-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "@vuepress/configs",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"format": "prettier --write .",
"lint": "eslint . && prettier --check .",
"prepare": "husky",
"release": "pnpm release:check && pnpm release:publish",
"release:check": "pnpm clean && pnpm build && pnpm lint",
"release:publish": "lerna publish"
},
"lint-staged": {
"!(test)/**/*.(js)": [
"eslint --fix",
"prettier --write"
],
"!(test)/**/*.!(js)": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"prettier": "prettier-config-vuepress",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@lerna-lite/cli": "^3.10.1",
"@lerna-lite/publish": "^3.10.1",
"eslint": "^9.16.0",
"eslint-config-vuepress": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-config-vuepress": "workspace:*",
"rimraf": "^6.0.1",
"sort-package-json": "^2.12.0",
"tsconfig-vuepress": "workspace:*",
"typescript": "^5.7.2",
"unbuild": "^2.0.0"
},
"packageManager": "[email protected]"
}