forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
{
"private": true,
"version": "0.10.4",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "pnpm -r --filter ./packages --parallel run dev",
"build": "pnpm -r --filter ./packages run build",
"docs": "vitepress dev docs",
"docs:build": "zx ./scripts/docs.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",
"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/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.1",
"@types/mermaid": "^8.2.5",
"@types/node": "^15.3.0",
"@types/prettier": "^2.2.3",
"@types/prismjs": "^1.16.5",
"@types/prompts": "^2.4.0",
"@types/recordrtc": "^5.6.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@vueuse/core": "^4.11.0",
"bumpp": "^6.0.6",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^24.3.6",
"esno": "^0.5.0",
"husky": "4.3.7",
"jest": "^26.6.3",
"katex": "^0.13.10",
"lint-staged": "^11.0.0",
"mermaid": "^8.10.1",
"playwright-chromium": "^1.11.0",
"pnpm": "^6.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"tsup": "^4.10.1",
"typeit": "^7.0.4",
"typescript": "^4.2.4",
"vite": "^2.3.2",
"vite-plugin-windicss": "^0.16.0-beta.17",
"vitepress": "^0.13.2",
"zx": "^1.6.0"
}
}