forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.20.4",
"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.6.5",
"@antfu/ni": "^0.7.0",
"@antfu/utils": "^0.1.6",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@types/cli-progress": "^3.9.1",
"@types/codemirror": "^5.60.0",
"@types/connect": "^3.4.34",
"@types/debug": "^4.1.5",
"@types/file-saver": "^2.0.2",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/katex": "^0.11.0",
"@types/markdown-it": "^12.0.2",
"@types/mermaid": "^8.2.6",
"@types/node": "^15.12.2",
"@types/prettier": "^2.2.3",
"@types/prismjs": "^1.16.5",
"@types/prompts": "^2.4.0",
"@types/recordrtc": "^5.6.5",
"@types/resolve": "^1.20.0",
"@types/semver": "^7.3.6",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@vueuse/core": "^5.0.1",
"bumpp": "^6.0.6",
"cross-env": "^7.0.3",
"cypress": "^7.5.0",
"eslint": "^7.28.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jest": "^24.3.6",
"esno": "^0.7.1",
"husky": "4.3.7",
"jest": "^27.0.4",
"katex": "^0.13.11",
"lint-staged": "^11.0.0",
"mermaid": "^8.10.1",
"playwright-chromium": "^1.11.1",
"pnpm": "^6.7.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"tsup": "4.11.2",
"typescript": "^4.3.2",
"vite": "^2.3.7",
"vite-plugin-windicss": "^1.0.3",
"zx": "^1.14.1"
}
}