-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
82 lines (82 loc) · 2.75 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
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"workspaces": [
"packages/vuepress-theme-reco",
"packages/@vuepress-reco/*"
],
"scripts": {
"build": "pnpm -r build && pnpm -r --parallel copy",
"build:copy": "pnpm -r copy",
"build:tsc": "pnpm -r build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"clean": "pnpm --parallel clean && pnpm clean:cache",
"clean:cache": "rm -rf **/.vuepress/.cache && rm -rf **/.vuepress/.temp",
"clean:modules": "rm -rf **/node_modules",
"commit": "git add . && git-cz",
"dev": "pnpm -r --parallel build --watch & pnpm --parallel copy --watch & pnpm example:dev",
"docs:build": "vuepress build docs",
"docs:deploy": "bash scripts/docs-deploy.sh",
"docs:dev": "pnpm -r --parallel build --watch & pnpm --parallel copy --watch & vuepress dev docs",
"example:build": "vuepress build example --clean-cache",
"example:dev": "DEBUG=vuepress* vuepress dev example --clean-cache",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "pnpm build && bash scripts/release.sh",
"release:pre": "pnpm build && bash scripts/pre-release.sh",
"update": "pnpm up --latest"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{json,yml,css,scss}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "prettier-config-vuepress",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^22.7.7",
"@types/unist": "^2.0.3",
"@types/vfile": "^4.0.0",
"@vuepress-reco/shared": "workspace:*",
"@vuepress-reco/tailwindcss-config": "workspace:*",
"@vuepress/bundler-vite": "2.0.0-rc.18",
"@vuepress/bundler-webpack": "2.0.0-rc.18",
"commitizen": "^4.1.2",
"concurrently": "^6.0.0",
"conventional-changelog-cli": "^2.0.34",
"cpx": "^1.5.0",
"cz-customizable": "^6.2.0",
"eslint": "^8.0.1",
"eslint-config-vuepress": "^5.2.1",
"eslint-config-vuepress-typescript": "^4.10.1",
"husky": "^6.0.0",
"jest": "^29.2.5",
"lint-staged": "^10.2.7",
"md5": "2.3.0",
"md5-es": "1.8.2",
"prettier": "^2.2.1",
"prettier-config-vuepress": "^1.2.0",
"rimraf": "3.0.2",
"sort-package-json": "^1.44.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^29.2.5",
"typescript": "5.2.2",
"vue": "^3.5.0",
"vuepress": "2.0.0-rc.18",
"vuepress-theme-reco": "workspace:*"
}
}