forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.95 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
{
"private": true,
"version": "0.5.2",
"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": "esno ./scripts/docs.ts",
"demo:dev": "pnpm -C demo run dev",
"demo:build": "pnpm -C demo run build",
"demo:starter": "pnpm -C demo run starter",
"lint": "eslint '**/*.{js,ts,vue,json}'",
"lint:fix": "nr lint --fix",
"test": "jest",
"test:update": "jest -u",
"release": "esno scripts/release.ts",
"ci:publish": "esno scripts/publish.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,vue,json}": [
"eslint --fix"
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.4",
"@antfu/ni": "^0.7.0",
"@antfu/utils": "^0.1.5",
"@slidev/cli": "workspace:*",
"@slidev/parser": "workspace:*",
"@types/cli-progress": "^3.9.1",
"@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/markdown-it": "^12.0.1",
"@types/node": "^15.0.2",
"@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.22.1",
"@vueuse/core": "^4.9.1",
"bumpp": "^6.0.6",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-plugin-jest": "^24.3.6",
"esno": "^0.5.0",
"execa": "^5.0.0",
"husky": "4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"playwright-chromium": "^1.10.0",
"pnpm": "^6.2.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"tsup": "^4.10.1",
"typeit": "^7.0.4",
"typescript": "^4.2.4",
"vite-plugin-windicss": "^0.16.0-beta.14",
"vitepress": "^0.13.2"
}
}