forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.2 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
{
"version": "0.28.1",
"private": true,
"scripts": {
"build": "pnpm -r --filter ./packages run build",
"ci:publish": "zx scripts/publish.mjs",
"cy": "cypress open",
"cy:fixture": "pnpm -C cypress/fixtures/basic run dev",
"demo:build": "zx ./scripts/demo.mjs",
"demo:composable-vue": "pnpm -C demo/composable-vue run dev",
"demo:dev": "pnpm -C demo/starter run dev",
"dev": "pnpm -r --filter ./packages --parallel run dev",
"lint": "eslint '**/*.{js,ts,vue,json}'",
"lint:fix": "nr lint --fix",
"release": "zx scripts/release.mjs",
"test": "vitest test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix"
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.15.0",
"@antfu/ni": "^0.12.0",
"@antfu/utils": "^0.4.0",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.9.2",
"@types/codemirror": "^5.60.5",
"@types/connect": "^3.4.35",
"@types/debug": "^4.1.7",
"@types/file-saver": "^2.0.5",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/katex": "^0.11.1",
"@types/markdown-it": "^12.2.3",
"@types/mermaid": "^8.2.7",
"@types/node": "^17.0.8",
"@types/prettier": "^2.4.3",
"@types/prismjs": "^1.16.6",
"@types/prompts": "^2.4.0",
"@types/recordrtc": "^5.6.8",
"@types/resolve": "^1.20.1",
"@types/semver": "^7.3.9",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@vueuse/core": "^7.5.3",
"bumpp": "^7.1.1",
"cross-env": "^7.0.3",
"cypress": "^7.7.0",
"eslint": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"esno": "^0.13.0",
"husky": "4.3.7",
"katex": "^0.15.2",
"lint-staged": "^12.1.7",
"mermaid": "8.13.0",
"playwright-chromium": "^1.17.2",
"pnpm": "^6.26.1",
"rimraf": "^3.0.2",
"tsup": "5.11.11",
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-windicss": "^1.6.2",
"vitest": "^0.1.13",
"zx": "^4.2.0"
},
"engines": {
"node": ">=14.0.0"
}
}