-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "monorepo-vitepress-theme-element-plus",
"type": "module",
"version": "1.3.2",
"packageManager": "pnpm@10.2.0",
"description": "A VitePress theme for Element Plus",
"author": "Hezhengxu",
"license": "MIT",
"keywords": [
"vitepress",
"theme",
"element-plus",
"documentation"
],
"scripts": {
"dev": "pnpm -C packages/docs dev",
"build:theme": "pnpm -C packages/theme build",
"build:docs": "pnpm -C packages/docs build",
"release": "release-it",
"commit": "czg",
"lint-staged": "lint-staged",
"lint": "eslint ./ --fix",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@element-plus/icons-vue": "^2.3.2",
"@release-it-plugins/workspaces": "^5.0.3",
"@release-it/conventional-changelog": "^10",
"@types/node": "^22.17.1",
"cz-git": "^1.12.0",
"czg": "^1.12.0",
"eslint": "^9.38.0",
"eslint-plugin-format": "^1.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"release-it": "^19",
"typescript": "^5.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
},
"volta": {
"node": "24.11.0"
}
}