-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "v3-color-picker",
"version": "2.0.0",
"author": "xufangyi",
"private": false,
"description": "Vue3.0 颜色选择器",
"keywords": [
"vue",
"vue3",
"color",
"vue3-color",
"color-picker",
"color picker",
"vue3-color-picker",
"vue3 color picker"
],
"main": "dist/v3-color-picker.js",
"module": "dist/v3-color-picker.es.js",
"types": "./index.d.ts",
"files": [
"package.json",
"README.md",
".gitignore",
"LICENSE",
"dist/v3-color-picker.es.js",
"dist/v3-color-picker.es.min.js",
"dist/v3-color-picker.js",
"dist/v3-color-picker.min.js",
"src",
"index.d.ts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xfy520/v3-color-picker.git"
},
"scripts": {
"build": "rollup -c -w"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.5",
"@vue/compiler-sfc": "3.0.0",
"rollup": "^2.57.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "3.1.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-vue": "^6.0.0",
"vue": "3.0.0"
}
}