-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "@zenetys/ztable",
"version": "2.1.16",
"author": "Zlab team, ZENETYS",
"email": "[email protected]",
"url": "https://tools.zenetys.com/ztable/",
"description": "Vuetify based panel to represent any data array of objects",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zenetys/ztable.git"
},
"main": "./dist/ztable.umd.js",
"module": "./dist/ztable.mjs",
"files": [
"dist",
"lib",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/ztable.mjs",
"require": "./dist/ztable.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lib": "vite build -c vite.lib.config.js",
"preview": "vite preview"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.0",
"sass": "~1.32",
"vite": "^4.3.0",
"vite-plugin-libcss": "^1.1.1",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@mdi/font": "^7.2.96",
"@vitejs/plugin-vue2": "^2.2.0",
"axios": "^0.28.0",
"material-design-icons": "^3.0.1",
"vue": "^2.7.0",
"vue-router": "^3.2.0",
"vue-uuid": "^2.1.0",
"vuetify": "^2.6.15"
},
"peerDependencies": {
"axios": "^0.28.0",
"vue": "^2.7.0",
"vuetify": "^2.6.15"
}
}