-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"private": true,
"type": "module",
"workspaces": [
"packages/vuepress-theme-anemos"
],
"scripts": {
"project:build": "pnpm build:all && pnpm build:copy",
"project:dev": "pnpm build:all --watch & pnpm build:copy --watch & pnpm docs:dev",
"lint": "eslint --ext .cjs,.js,.ts,.vue .",
"project:release:pre": "pnpm project:build && pnpm docs:build && bash commands/pre-release.sh",
"build:all": "pnpm -r --stream build",
"build:copy": "pnpm --parallel --stream copy",
"build:tsc": "tsc",
"docs:dev": "DEBUG=vuepress* vuepress dev docs",
"docs:build": "vuepress build docs"
},
"lint-staged": {
"*.{cjs,js,ts,vue}": "eslint --fix",
"*.{json,yml,css,scss}": "prettier --write",
"package.json": "sort-package-json"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@vuepress/client": "2.0.0-beta.61",
"cpx": "^1.5.0",
"eslint": "^8.24.0",
"eslint-config-vuepress": "^4.0.3",
"eslint-config-vuepress-typescript": "^4.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.2",
"vue": "^3.2.37",
"vuepress": "2.0.0-beta.61",
"vuepress-theme-anemos": "workspace:*"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint-plugin-import",
"eslint-plugin-n",
"eslint-plugin-promise"
]
}
}
}