-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
51 lines (51 loc) · 1.33 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
{
"private": true,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"upgrade": "taze -rwi --include /@slidev/",
"dev": "zx scripts/dev.mjs",
"build": "zx scripts/build.mjs",
"release": "zx scripts/prompt.mjs",
"screenshot": "zx scripts/screenshot.mjs",
"ci:publish": "zx scripts/publish.mjs",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@slidev/cli": "^0.47.0",
"@slidev/client": "^0.47.0",
"@slidev/parser": "^0.47.0",
"@slidev/types": "^0.47.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"bumpp": "^9.3.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.1",
"playwright-chromium": "^1.41.2",
"prompts": "^2.4.2",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.2",
"typescript": "^5.3.3",
"vue": "^3.4.15",
"zx": "^7.2.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix"
]
}
}