-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "antdv-pro-components",
"private": true,
"packageManager": "[email protected]",
"homepage": "https://github.com/liujiayii/antdv-pro-components",
"repository": {
"type": "git",
"url": "https://github.com/liujiayii/antdv-pro-components"
},
"scripts": {
"test": "vitest",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@antd-vc/pro-card": "workspace:*",
"@antd-vc/pro-field": "workspace:*",
"@antd-vc/pro-form": "workspace:*",
"@antd-vc/pro-table": "workspace:*",
"@antd-vc/pro-utils": "workspace:*",
"@antfu/eslint-config": "^3.14.0",
"@tsconfig/node20": "^20.1.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/tsconfig": "^0.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vitepress": "^1.5.0",
"vitest": "^3.0.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": []
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint . --fix"
}
}