forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.3 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
{
"type": "module",
"version": "0.43.7",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"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",
"play": "pnpm demo:dev",
"dev": "pnpm -r --filter=./packages/** --parallel run dev",
"lint": "eslint . --cache",
"lint:fix": "nr lint --fix",
"typecheck": "vue-tsc --noEmit",
"release": "bumpp package.json packages/*/package.json --all -x \"zx scripts/update-versions.mjs\"",
"test": "vitest test"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.21",
"@antfu/ni": "^0.21.8",
"@antfu/utils": "^0.7.6",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.11.3",
"@types/codemirror": "^5.60.10",
"@types/connect": "^3.4.36",
"@types/debug": "^4.1.9",
"@types/file-saver": "^2.0.5",
"@types/fs-extra": "^11.0.2",
"@types/js-yaml": "^4.0.6",
"@types/katex": "^0.16.3",
"@types/localtunnel": "^2.0.2",
"@types/markdown-it": "^13.0.2",
"@types/node": "^20.8.3",
"@types/prismjs": "^1.26.1",
"@types/prompts": "^2.4.5",
"@types/recordrtc": "^5.6.12",
"@types/resolve": "^1.20.3",
"@types/semver": "^7.5.3",
"@types/yargs": "^17.0.28",
"@vueuse/core": "^10.5.0",
"bumpp": "^9.2.0",
"cross-env": "^7.0.3",
"cypress": "^12.17.4",
"eslint": "^8.51.0",
"esno": "^0.17.0",
"katex": "^0.16.9",
"lint-staged": "^14.0.1",
"mermaid": "^10.5.0",
"playwright-chromium": "^1.38.1",
"pnpm": "^8.8.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-windicss": "^1.9.1",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.16",
"zx": "^7.2.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix --cache"
]
}
}