-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "element-crud-table",
"license": "MIT",
"version": "1.5.0-rc",
"scripts": {
"dev": "vite",
"mock-api": "json-server mock/api.json --port 7000",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"release": "pnpm build && npm publish"
},
"types": "index.d.ts",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"jsdriver": "dist/index.umd.js",
"style": "dist/style.css",
"vetur": {
"tags": "tags.json",
"attributes": "attributes.json"
},
"web-types": "web-types.json",
"files": [
"dist",
"package.json",
"web-types.json",
"tags.json",
"attributes.json",
"index.d.ts"
],
"peerDependencies": {
"element-plus": "^2.1.11",
"vue": "^3.2.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.21",
"@vitejs/plugin-vue": "^2.2.0",
"@vitejs/plugin-vue-jsx": "^1.3.8",
"axios": "^0.26.0",
"element-plus": "2.1.11",
"json-server": "^0.17.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vue": "^3.2.33",
"vue-tsc": "^0.29.8"
},
"dependencies": {
"@element-plus/icons-vue": "^1.0.0"
}
}