forked from megafetis/vue3-treeselect
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2 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
{
"name": "@r2rka/vue3-treeselect",
"version": "0.2.4",
"description": "Tree select hierarchical component for vue 3 (next)",
"main": "dist/r2rka-vue3-treeselect.mjs",
"unpkg": "dist/r2rka-vue3-treeselect.umd.js",
"author": "megafetis",
"scripts": {
"build": "vite build",
"preview": "vite preview",
"dev": "vite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/ts-nameof": "4.2.1",
"@vue/compiler-sfc": "3.4.21",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.0",
"dotenv": "^8.2.0",
"easings-css": "2.0.3",
"file-loader": "^6.0.0",
"fuzzysearch": "1.0.3",
"html-webpack-plugin": "^4.3.0",
"is-promise": "4.0.0",
"less": "^3.13.0",
"less-loader": "^7.1.0",
"material-colors": "1.2.6",
"mini-css-extract-plugin": "^0.9.0",
"resolve-url-loader": "^3.1.2",
"sass": "^1.26.10",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.12",
"ts-nameof": "5.0.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.0",
"vue": "^3.4.21",
"vue-loader": "16.1.2",
"vue-style-loader": "4.1.2",
"watch-size": "2.0.0"
},
"peerDependencies": {
"vue": "^3.4.21"
},
"bugs": {
"url": "https://github.com/r2rka1/vue3-treeselect/issues"
},
"browserslist": [
"Android >= 4.0",
"iOS >= 8"
],
"homepage": "https://github.com/r2rka1/vue3-treeselect",
"files": [
"dist/*.js",
"dist/*.css",
"styles"
],
"keywords": [
"vue",
"vue3",
"next",
"vue next",
"tree",
"treeselect",
"select",
"tree select",
"hierarchy",
"hierarchical"
],
"style": "dist/style.css",
"sideEffects": [
"*.css",
"*.less"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/r2rka1/vue3-treeselect"
},
"dependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"vite": "^5.2.8"
}
}