forked from zanmato/vue3-treeselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@zanmato/vue3-treeselect",
"version": "0.4.1",
"description": "Tree select hierarchical component for Vue 3",
"main": "dist/vue3-treeselect.cjs.min.js",
"unpkg": "dist/vue3-treeselect.umd.min.js",
"css": "dist/vue3-treeselect.min.css",
"style": "dist/vue3-treeselect.min.css",
"author": "zanmato",
"scripts": {
"build-library": "webpack build --config webpack.lib.config.js --mode production",
"build-docs": "webpack build --config webpack.docs.config.js --mode production",
"docs": "webpack serve --config webpack.docs.config.js --mode development",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore src",
"unit": "vitest --dom"
},
"dependencies": {
"@babel/runtime": "^7.23.1",
"@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
"easings-css": "2.0.3",
"fuzzysearch": "1.0.3",
"is-promise": "4.0.0",
"lodash": "^4.17.21",
"material-colors": "1.2.6",
"watch-size": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/babel-preset-jsx": "1.2.4",
"@vue/compiler-sfc": "3.2.31",
"@vue/test-utils": "^2.4.1",
"babel-loader": "^9.1.3",
"babel-plugin-prismjs": "^2.1.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"file-loader": "^6.2.0",
"happy-dom": "^12.5.0",
"html-webpack-plugin": "^5.5.3",
"jasmine-expect": "^5.0.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.3",
"prismjs": "^1.29.0",
"strip-indent": "^4.0.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"vitest": "^0.34.6",
"vue": "^3.3.4",
"vue-loader": "^17.2.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0",
"yaku": "^1.0.1"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"bugs": {
"url": "/~https://github.com/zanmato/vue3-treeselect/issues"
},
"browserslist": [
"Android >= 4.0",
"iOS >= 8"
],
"homepage": "/~https://github.com/zanmato/vue3-treeselect",
"files": [
"dist/*.js",
"dist/*.css",
"styles"
],
"keywords": [
"vue",
"vue3",
"next",
"vue next",
"tree",
"treeselect",
"select",
"tree select",
"hierarchy",
"hierarchical"
],
"unmockedModulePathPatterns": [
"jasmine-expect"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+/~https://github.com/zanmato/vue3-treeselect.git"
}
}