forked from xaksis/vue-good-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (59 loc) · 1.43 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
{
"name": "vue-good-table",
"version": "2.21.12",
"sideEffects": [
"*.vue",
"*.css"
],
"description": "A simple, clean data table for VueJS (2.x) with essential features like sorting, column filtering, pagination etc",
"main": "dist/vue-good-table.cjs.js",
"module": "dist/vue-good-table.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"bundle": "bili",
"dev": "vite",
"docs:dev": "vuepress dev vp-docs",
"docs:build": "vuepress build vp-docs",
"test": "echo \"No test specified\""
},
"repository": "github:xaksis/vue-good-table",
"keywords": [
"vue",
"vuejs",
"table",
"datatable"
],
"author": {
"name": "xaksis",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"date-fns": "^2.17.0",
"lodash.isequal": "^4.5.0",
"@vueuse/core": "^9.6.0"
},
"devDependencies": {
"@vue/compiler-sfc": "2.7.14",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"bili": "^5.0.5",
"eslint-config-airbnb": "^18.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-vue": "5.1.9",
"sass-loader": "13.2.0",
"vue": "2.7.14",
"vue-template-compiler": "^2.7.4",
"vuepress": "^1.0.0-rc.1",
"@vitejs/plugin-vue2": "2.1.0",
"@vue/runtime-dom": "^3.2.37",
"sass": "^1.32.11",
"vite": "^3.0.4",
"unplugin-auto-import": "^0.12.0"
},
"peerDependencies": {
"css-loader": "^3.6.0"
}
}