-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
89 lines (89 loc) · 2.76 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.50.0-beta.5",
"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": "catalog:",
"@antfu/ni": "catalog:",
"@antfu/utils": "catalog:",
"@shikijs/markdown-it": "catalog:",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "catalog:",
"@types/connect": "catalog:",
"@types/debug": "catalog:",
"@types/file-saver": "catalog:",
"@types/fs-extra": "catalog:",
"@types/js-yaml": "catalog:",
"@types/katex": "catalog:",
"@types/markdown-it": "catalog:",
"@types/node": "catalog:",
"@types/prompts": "catalog:",
"@types/recordrtc": "catalog:",
"@types/resolve": "catalog:",
"@types/semver": "catalog:",
"@types/yargs": "catalog:",
"@vueuse/core": "catalog:",
"bumpp": "catalog:",
"cross-env": "catalog:",
"cypress": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"esno": "catalog:",
"katex": "catalog:",
"lint-staged": "catalog:",
"mermaid": "catalog:",
"playwright-chromium": "catalog:",
"prettier-plugin-slidev": "catalog:",
"rimraf": "catalog:",
"shiki": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"tinyexec": "catalog:",
"ts-json-schema-generator": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:",
"zx": "catalog:"
},
"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"
]
}
}