forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.28 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
{
"private": true,
"version": "0.22.7",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "pnpm -r --filter ./packages --parallel run dev",
"build": "pnpm -r --filter ./packages run build",
"demo:build": "zx ./scripts/demo.mjs",
"demo:dev": "pnpm -C demo/starter run dev",
"demo:composable-vue": "pnpm -C demo/composable-vue run dev",
"lint": "eslint '**/*.{js,ts,vue,json}'",
"lint:fix": "nr lint --fix",
"test": "jest",
"test:update": "jest -u",
"cy": "cypress open",
"cy:fixture": "pnpm -C cypress/fixtures/basic run dev",
"release": "zx scripts/release.mjs",
"ci:publish": "zx scripts/publish.mjs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix"
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@antfu/ni": "^0.7.0",
"@antfu/utils": "^0.2.4",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.9.2",
"@types/codemirror": "^5.60.2",
"@types/connect": "^3.4.35",
"@types/debug": "^4.1.7",
"@types/file-saver": "^2.0.3",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.2",
"@types/katex": "^0.11.1",
"@types/markdown-it": "^12.0.3",
"@types/mermaid": "^8.2.7",
"@types/node": "^16.4.2",
"@types/prettier": "^2.3.2",
"@types/prismjs": "^1.16.6",
"@types/prompts": "^2.4.0",
"@types/recordrtc": "^5.6.6",
"@types/resolve": "^1.20.1",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@vueuse/core": "^5.1.4",
"bumpp": "^6.0.6",
"cross-env": "^7.0.3",
"cypress": "^7.7.0",
"eslint": "^7.31.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jest": "^24.4.0",
"esno": "^0.8.0",
"husky": "4.3.7",
"jest": "^27.0.6",
"katex": "^0.13.13",
"lint-staged": "^11.1.1",
"mermaid": "^8.11.0",
"playwright-chromium": "^1.13.0",
"pnpm": "^6.11.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"tsup": "4.12.5",
"typescript": "^4.3.5",
"vite": "^2.4.3",
"vite-plugin-windicss": "^1.2.5",
"zx": "^2.0.0"
}
}