forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
{
"version": "0.36.11",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=14.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",
"dev": "pnpm -r --filter=./packages/** --parallel run dev",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"release": "bumpp package.json packages/*/package.json --all -x \"zx scripts/update-versions.mjs\"",
"test": "vitest test"
},
"devDependencies": {
"@antfu/eslint-config": "^0.29.4",
"@antfu/ni": "^0.18.5",
"@antfu/utils": "^0.6.3",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.11.0",
"@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.14.0",
"@types/markdown-it": "^12.2.3",
"@types/mermaid": "^9.1.0",
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@types/prismjs": "^1.26.0",
"@types/prompts": "^2.4.1",
"@types/recordrtc": "^5.6.9",
"@types/resolve": "^1.20.2",
"@types/semver": "^7.3.13",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@vueuse/core": "^9.5.0",
"bumpp": "^8.2.1",
"cross-env": "^7.0.3",
"cypress": "^10.10.0",
"eslint": "^8.27.0",
"eslint-plugin-cypress": "^2.12.1",
"esno": "^0.16.3",
"katex": "^0.16.3",
"lint-staged": "^13.0.3",
"mermaid": "^9.2.1",
"playwright-chromium": "^1.27.1",
"pnpm": "^7.14.2",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.1",
"tsup": "^5.12.9",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vite-plugin-windicss": "^1.8.8",
"vitest": "^0.25.1",
"zx": "^7.1.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix"
]
}
}