-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.28 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
86
87
{
"name": "@vuepress-zp/monorepo",
"version": "1.0.1",
"description": "related packages of vuepress-theme",
"main": "index.js",
"workspaces": [
"packages/vuepress-theme-zp",
"packages/@vuepress-zp/*"
],
"scripts": {
"build": "pnpm build:all && pnpm build:copy",
"build:all": "pnpm -r --stream build",
"build:copy": "pnpm --parallel --stream copy",
"build:tsc": "tsc",
"dev": "pnpm -r --parallel build --watch & pnpm build:copy --watch & pnpm demo:dev",
"demo:dev": "DEBUG=vuepress* vuepress dev demo",
"demo:build": "vuepress build demo",
"clean": "pnpm --parallel --stream clean",
"commit": "git add . && git cz",
"release": "pnpm build && bash scripts/release.sh",
"init": "changeset init",
"lint": "eslint --ext .cjs,.js,.ts,.vue .",
"lint-fix": "eslint --fix --ext .ts,.vue ."
},
"lint-staged": {
"*.{cjs,js,ts,vue}": "eslint --fix",
"*.{json,yml,css,scss}": "prettier --write"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"keywords": [
"vuepress-theme-zp",
"vuepress-theme",
"vuepress",
"monorepo",
"theme",
"markdown",
"vue",
"vite",
"webpack"
],
"author": "huanwu",
"license": "ISC",
"prettier": "prettier-config-vuepress",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/node": "^20.4.5",
"@vuepress/client": "2.0.0-beta.66",
"commitizen": "^4.3.0",
"cpx2": "^4.2.0",
"cz-git": "^1.5.3",
"eslint": "^8.46.0",
"eslint-config-vuepress": "^4.3.0",
"eslint-config-vuepress-typescript": "^4.4.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prettier-config-vuepress": "^4.4.0",
"rimraf": "^5.0.1",
"tsconfig-vuepress": "^4.2.0",
"typescript": "^5.1.6",
"vue": "^3.3.4",
"vuepress": "2.0.0-beta.66",
"vuepress-theme-zp": "workspace:1.0.59"
},
"engines": {
"node": ">=18.16.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/node",
"eslint-plugin-import",
"eslint-plugin-n",
"eslint-plugin-promise",
"typescript",
"webpack"
]
}
}
}