-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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
{
"name": "ui-forge",
"version": "0.0.1-alpha.5",
"description": "通过对三方UI组件二次封装,提高使用效率。",
"author": "kiccer",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"prepare": "husky"
},
"devDependencies": {
"@stylistic/stylelint-plugin": "^2.1.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/test-utils": "^2.4.5",
"@vueuse/core": "^10.9.0",
"async-validator": "^4.2.5",
"element-plus": "^2.6.3",
"eslint": "^8.49.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"pinia": "^2.1.7",
"postcss-html": "^1.6.0",
"sass": "^1.74.1",
"standard": "^17.1.0",
"stylelint": "^16.3.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.1.6",
"vite-plugin-vue-devtools": "^7.0.18",
"vitest": "^1.4.0",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"peerDependencies": {
"@vueuse/core": "^10.9.0",
"async-validator": "^4.2.5",
"element-plus": "^2.6.3",
"lodash-es": "^4.17.21",
"pinia": "^2.1.7",
"sass": "^1.74.1",
"vue": "^3.4.21"
},
"repository": {
"type": "git",
"url": "https://github.com/kiccer/ui-forge"
},
"bugs": {
"url": "https://github.com/kiccer/ui-forge/issues"
},
"homepage": "https://kiccer.github.io/ui-forge/",
"main": "src/index.js",
"files": [
"src/index.js",
"src/components/element",
"src/hooks/element",
"src/stores",
"src/utils"
],
"volta": {
"node": "18.20.1"
}
}