-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
85 lines (85 loc) · 2.81 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
83
84
85
{
"name": "vuepress-theme-plume-monorepo",
"type": "module",
"version": "1.0.0-rc.118",
"private": true,
"packageManager": "pnpm@9.14.2",
"author": "pengzhanbo <q942450674@outlook.com> (https://github.com/pengzhanbo/)",
"license": "MIT",
"keywords": [
"vuepress",
"vuepress-next",
"Theme",
"vuepress theme",
"vuepress-theme-plume"
],
"engines": {
"node": "^18.20.0 || >=20.0.0",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm clean && pnpm build:package",
"build:package": "pnpm -r --stream build",
"clean": "pnpm -r --stream clean",
"dev": "pnpm --stream '/(dev:package|docs:dev)/'",
"dev:package": "pnpm --parallel dev",
"docs:dev": "wait-on -d 100 theme/lib/node/index.js && pnpm -F=docs docs:dev",
"docs:build": "pnpm -F=docs docs:build",
"docs:clean": "pnpm -F=docs docs:clean",
"docs:serve": "pnpm -F=docs docs:serve",
"lint": "pnpm lint:check && pnpm lint:css",
"lint:fix": "pnpm lint:check --fix && pnpm lint:css --fix",
"lint:check": "eslint .",
"lint:css": "stylelint **/*.{css,vue}",
"test": "cross-env TZ=Etc/UTC vitest --coverage",
"prepare": "husky",
"release": "pnpm release:check && pnpm release:version && pnpm -r publish && pnpm release:sync",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:check": "pnpm lint && pnpm build",
"release:sync": "node scripts/mirror-sync.mjs",
"release:version": "bumpp package.json plugins/*/package.json theme/package.json cli/package.json --execute=\"pnpm release:changelog\" --commit \"build: publish v%s\" --all --tag --push"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@pengzhanbo/eslint-config-vue": "^1.19.0",
"@pengzhanbo/stylelint-config": "^1.19.0",
"@types/lodash.merge": "^4.6.9",
"@types/minimist": "^1.2.5",
"@types/node": "20.12.10",
"@types/webpack-env": "^1.18.5",
"@vitest/coverage-istanbul": "^2.1.5",
"bumpp": "^9.8.1",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cpx2": "^8.0.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"markdown-it": "^14.1.0",
"memfs": "^4.14.0",
"minimist": "^1.2.8",
"rimraf": "^6.0.1",
"stylelint": "^16.10.0",
"tsconfig-vuepress": "^5.2.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"wait-on": "^8.0.1"
},
"resolutions": {
"esbuild": "^0.24.0"
},
"lint-staged": {
"*": "eslint --fix",
"*.{css,vue}": "stylelint --fix",
"*.{js,ts,mjs,cjs}": "cross-env TZ=Etc/UTC vitest related --run"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}