-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "vue-color-input",
"type": "module",
"version": "2.0.0",
"description": "Slick and perfomant vue 3 color picker component whose goal is to replace <input type=color>",
"keywords": [
"vue",
"color",
"input",
"picker",
"vue-color-input"
],
"author": "Ivan Che <[email protected]>",
"license": "MIT",
"repository": "gVguy/vue-color-input",
"files": [
"dist/*",
"src/**/*.vue",
"src/assets/*.svg"
],
"sideEffects": [
"**/*.css"
],
"main": "./dist/color-input.umd.cjs",
"module": "./dist/color-input.js",
"exports": {
".": {
"import": "./dist/color-input.js",
"require": "./dist/color-input.umd.cjs"
}
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:demo": "vite build --config vite.config-demo.js",
"publish:demo": "gh-pages -d demo",
"prepublishOnly": "npm run build"
},
"dependencies": {
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-vue": "^5.1.1",
"autoprefixer": "^10.3.7",
"gh-pages": "^3.2.3",
"postcss": "^8.2.10",
"sass": "^1.42.1",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "3.9.1",
"vite-plugin-lib-inject-css": "^2.1.1",
"vue": "^3.4.26",
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"vue": "^3.0.5"
}
}