-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 KB
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
{
"name": "el-dynamic-forms",
"private": true,
"version": "0.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"main": "./dist/index.cjs.js",
"browser": "./dist/index.umd.js",
"exports": {
".": {
"browser": {
"types": "./dist/index.d.cts",
"default": "./dist/index.umd.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.cjs.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "vue-tsc",
"preview": "vite preview",
"prepack": "yarn build"
},
"dependencies": {
"@element-plus/icons-vue": "=2.3.1",
"vue": "^3.5.24"
},
"devDependencies": {
"@haixee/unocss-preset": "^0.0.11",
"@types/node": "~22",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"element-plus": "=2.9.6",
"sass-embedded": "^1.93.3",
"typescript": "^5.4.5",
"unocss": "~0.65.0",
"unocss-preset-scrollbar": "^3.2.0",
"unplugin-auto-import": "^20.2.0",
"vite": "^7.2.2",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^3.1.3"
},
"packageManager": "yarn@4.5.1"
}