-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
72 lines (72 loc) · 1.62 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
{
"name": "vcolorpicker",
"version": "2.0.4",
"type": "module",
"description": "基于 Vue3 的颜色选择器",
"main": "./lib/vcolorpicker.mjs",
"module": "./lib/vcolorpicker.js",
"exports": {
".": {
"import": "./lib/vcolorpicker.js",
"require": "./lib/vcolorpicker.mjs"
}
},
"keywords": [
"vcolorpicker",
"colorpicker",
"color-picker",
"vue-color-picker"
],
"author": "zuley",
"license": "MIT",
"homepage": "https://github.com/zuley/vue-color-picker",
"private": false,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"lib": "vite build --mode lib",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"commit": "git-cz",
"release": "release-it"
},
"dependencies": {
"@vueuse/core": "^9.6.0",
"highlight.js": "^11.7.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/tsconfig": "^0.1.3",
"git-cz": "^4.9.0",
"npm-run-all": "^4.1.5",
"release-it": "^15.5.0",
"sass": "^1.56.1",
"typescript": "~4.7.4",
"vite": "^3.2.4",
"vue-tsc": "^1.0.9"
},
"release-it": {
"github": {
"release": false
},
"git": {
"commitMessage": "release: v${version}"
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "echo 更新版本成功"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}