forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.73 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"type": "module",
"version": "0.49.26",
"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:vue-runner": "pnpm -C demo/vue-runner 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",
"docs": "pnpm -C docs run dev",
"docs:build": "pnpm run --filter {./docs}... build && pnpm demo:build",
"release": "bumpp package.json packages/*/package.json docs/package.json --all -x \"zx scripts/update-versions.mjs\"",
"test": "vitest test",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^2.25.2",
"@antfu/ni": "^0.22.4",
"@antfu/utils": "catalog:",
"@shikijs/markdown-it": "^1.13.0",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.11.6",
"@types/connect": "^3.4.38",
"@types/debug": "^4.1.12",
"@types/file-saver": "^2.0.7",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.3.0",
"@types/prismjs": "^1.26.4",
"@types/prompts": "^2.4.9",
"@types/recordrtc": "^5.6.14",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"@vueuse/core": "^11.0.0",
"bumpp": "^9.5.1",
"cross-env": "^7.0.3",
"cypress": "^13.13.3",
"eslint": "^9.9.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.7.0",
"execa": "^9.3.1",
"katex": "catalog:",
"lint-staged": "^15.2.9",
"mermaid": "catalog:",
"playwright-chromium": "^1.46.0",
"prettier-plugin-slidev": "^1.0.5",
"rimraf": "^6.0.1",
"shiki": "catalog:",
"simple-git-hooks": "^2.11.1",
"taze": "^0.16.6",
"ts-json-schema-generator": "^2.3.0",
"tsup": "^8.2.4",
"typescript": "catalog:",
"vite": "^5.4.1",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.29",
"zx": "^8.1.4"
},
"pnpm": {
"patchedDependencies": {
"@hedgedoc/[email protected]": "patches/@[email protected]"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/*.{js,ts,vue,json}": [
"eslint --fix --cache"
]
}
}