-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.22 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
{
"name": "whats-blog-vuepress",
"version": "0.0.1",
"description": "",
"private": true,
"repository": "https://github.com/whats-blog/whats-blog-vuepress",
"scripts": {
"blog:dev": "vuepress dev blog",
"blog:build": "pnpm clean && pnpm build && pnpm copy && vuepress build blog",
"build": "tsc --build",
"build:lib": "pnpm build && pnpm copy",
"build:watch": "pnpm build -- --watch",
"clean": "pnpm clean --filter @whats-blog/* --parallel",
"copy": "pnpm copy --filter @whats-blog/* --parallel",
"copy:watch": "pnpm copy -- -- --watch",
"deploy": "./scripts/deploy.sh",
"publish": "pnpm build:lib && ./scripts/publish.sh"
},
"license": "MIT",
"devDependencies": {
"@whats-blog/vuepress-theme-next": "0.0.1",
"cpx2": "^3.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.2.4",
"vuepress": "2.0.0-beta.26"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,css,js,vue,json,yml}": [
"prettier --write"
],
"*.ts": [
"prettier --parser typescript --write"
]
},
"publishConfig": {
"access": "restricted"
}
}