-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "@nigi-element-formily/monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"play": "pnpm -C playground run dev",
"docs": "pnpm -C docs run dev",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"release": "bumpp -r",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"vue": "^3.4.25"
},
"devDependencies": {
"@antfu/eslint-config": "^2.14.0",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@element-plus/icons-vue": "^2.3.1",
"@nigi-element-formily/element-plus": "workspace:*",
"@shikijs/vitepress-twoslash": "^1.3.0",
"@types/node": "^20.12.7",
"@unocss/eslint-config": "^0.59.4",
"@unocss/eslint-plugin": "^0.59.4",
"@unocss/reset": "^0.59.4",
"@vitejs/plugin-vue": "^5.0.4",
"@vueuse/core": "^10.9.0",
"@vueuse/math": "^10.9.0",
"bumpp": "^9.4.0",
"element-plus": "^2.7.2",
"eslint": "^9.0.0",
"esno": "^4.7.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.2",
"pnpm": "^9.0.2",
"rimraf": "^5.0.5",
"sass": "^1.75.0",
"simple-git-hooks": "^2.11.1",
"splitpanes": "^3.1.5",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"unocss": "^0.59.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.5.0",
"vue": "^3.4.25",
"vue-tsc": "^2.0.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}