-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "Color and gradient picker",
"version": "1.0.0",
"description": "Color and gradient picker for vue3.js",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm run -C lib build",
"dev": "pnpm run -C lib dev",
"predev": "node scripts/dev.js",
"build:docs": "pnpm run -C docs docs:build",
"eslint": "eslint --ext .ts,.tsx,.jsx,.js,.vue --ignore-path .gitignore --fix src",
"prettier": "prettier --write .",
"prepare": "husky install",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"keywords": [],
"author": "June",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"autoprefixer": "^9.0.0",
"commitizen": "^4.2.6",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"element-plus": "^2.3.9",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"execa": "^7.1.1",
"husky": "^8.0.3",
"inquirer": "^9.1.5",
"prettier": "^2.8.3",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"terser": "^5.18.1",
"typescript": "^4.9.3",
"unplugin-auto-import": "^0.16.6",
"vite": "^6.0.3",
"vue-tsc": "^1.0.11"
},
"dependencies": {
"vue": "^3.5.13"
}
}