-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"private": true,
"packageManager": "pnpm@7.3.0",
"scripts": {
"cz": "czg",
"gen:version": "tsx scripts/gen-version.ts",
"clean": "pnpm run clean:dist && pnpm run -r --parallel clean",
"clean:dist": "rimraf dist",
"build:theme": "pnpm run -C packages/theme-chalk build",
"docs:dev": "pnpm run -C docs dev",
"docs:build": "pnpm run -C docs build",
"docs:serve": "pnpm run -C docs serve",
"stub": "pnpm run -r --parallel stub",
"prepare": "husky install",
"postinstall": "pnpm stub && pnpm gen:version"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@humble-ui/build-constants": "workspace:*",
"@humble-ui/build-utils": "workspace:*",
"@pnpm/types": "^8.4.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vue/runtime-core": "^3.2.0",
"chalk": "^5.0.1",
"consola": "^2.15.3",
"cz-git": "^1.3.12",
"czg": "^1.3.12",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsonc": "^2.5.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"fast-glob": "^3.2.12",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.53.0",
"tsx": "^3.6.0",
"typescript": "^4.9.3",
"unplugin-vue-macros": "^0.11.2",
"vue": "^3.2.0"
},
"engines": {
"node": ">= 16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}