forked from slidevjs/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"private": true,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint '**/*.{js,ts,vue,json}'",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix"
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.8.0",
"@antfu/ni": "^0.9.3",
"@antfu/utils": "^0.3.0",
"@slidev/cli": "^0.22.7",
"@slidev/client": "^0.22.7",
"@slidev/parser": "^0.22.7",
"@slidev/types": "^0.22.7",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.13",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"bumpp": "^7.1.1",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.32.0",
"esno": "^0.9.1",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"husky": "4.3.7",
"lint-staged": "^11.1.2",
"playwright-chromium": "^1.14.1",
"prompts": "^2.4.1",
"taze": "^0.4.5",
"typescript": "^4.4.2",
"vue": "^3.2.10",
"zx": "^4.2.0"
}
}