-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"private": true,
"scripts": {
"dev": "pnpm -r --filter=./packages/** run dev",
"build": "pnpm -r --filter=./packages/** run build",
"test": "vitest test"
},
"workspaces": [
"packages/*",
"playground"
],
"dependencies": {
"docx": "^8.0.4",
"markdown-it": "^13.0.1",
"unocss": "^0.51.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.2",
"@antfu/utils": "^0.5.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/types": "^17.4.4",
"@md-report/core": "workspace:*",
"@md-report/parser": "workspace:*",
"@md-report/types": "workspace:*",
"@types/file-saver": "^2.0.5",
"@types/js-yaml": "^4.0.5",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.23",
"@types/yargs": "^17.0.10",
"eslint": "^8.13.0",
"lint-staged": "^13.2.2",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.1",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"vitest": "^0.9.3"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json}": "eslint --fix"
},
"simple-git-hooks": {
"commit-msg": "npx --no -- commitlint --edit ${1}",
"pre-commit": "npx lint-staged"
}
}