-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
89 lines (89 loc) · 2.66 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
{
"type": "module",
"version": "0.49.0-beta.1",
"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 .",
"lint:fix": "nr lint --fix",
"typecheck": "vue-tsc --noEmit",
"docs": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build && pnpm demo:build",
"release": "bumpp package.json packages/*/package.json --all -x \"zx scripts/update-versions.mjs\"",
"test": "vitest test"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@shikijs/markdown-it": "^1.3.0",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.11.5",
"@types/codemirror": "^5.60.15",
"@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.0.0",
"@types/node": "^20.12.7",
"@types/prismjs": "^1.26.3",
"@types/prompts": "^2.4.9",
"@types/recordrtc": "^5.6.14",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.32",
"@vueuse/core": "^10.9.0",
"bumpp": "^9.4.0",
"cross-env": "^7.0.3",
"cypress": "^13.7.2",
"eslint": "^9.0.0",
"eslint-plugin-format": "^0.1.0",
"esno": "^4.7.0",
"katex": "^0.16.10",
"lint-staged": "^15.2.2",
"mermaid": "^10.9.0",
"playwright-chromium": "^1.43.0",
"pnpm": "^8.15.6",
"prettier-plugin-slidev": "^1.0.5",
"rimraf": "^5.0.5",
"shiki": "^1.3.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.3",
"tsup": "^8.0.2",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.11",
"zx": "^8.0.1"
},
"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"
]
}
}