generated from xiaoluoboding/vue-library-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "vue-color-wheel",
"description": "A Color Wheel Picker for Vue",
"version": "0.1.1",
"type": "module",
"author": "xiaoluoboding <[email protected]>",
"scripts": {
"dev": "vite --port 2423",
"build:docs": "vite build --mode docs",
"build:lib": "vite build --mode lib && vue-tsc -p tsconfig.build.json",
"preview": "vite preview",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "pnpm run build:lib && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoluoboding/vue-color-wheel.git"
},
"homepage": "https://github.com/xiaoluoboding/vue-color-wheel",
"files": [
"lib"
],
"main": "./lib/vue-color-wheel.umd.cjs",
"module": "./lib/vue-color-wheel.js",
"exports": {
".": {
"import": "./lib/vue-color-wheel.js",
"require": "./lib/vue-color-wheel.umd.cjs",
"types": "./lib/index.d.ts"
}
},
"types": "./lib/index.d.ts",
"devDependencies": {
"@iconify/json": "^2.2.212",
"@types/node": "^18.19.33",
"@types/web-bluetooth": "^0.0.20",
"@unocss/reset": "^0.55.7",
"@vitejs/plugin-vue": "^4.6.2",
"@vueuse/core": "9.13.0",
"clean-css": "^5.3.3",
"highlight.js": "^11.9.0",
"sass": "^1.77.2",
"typescript": "^4.9.5",
"unocss": "^0.55.7",
"unplugin-icons": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.3",
"vue": "^3.4.27",
"vue-tsc": "^1.8.27"
},
"dependencies": {
"colord": "^2.9.3",
"gsap": "^3.12.5",
"moveable": "^0.53.0",
"vue-sonner": "^1.1.2"
}
}