-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "vue-virtual-grid",
"version": "2.5.0",
"author": "Corentin Mors <corentin@pixelswap.fr>",
"license": "MIT",
"repository": "github:mikescops/vue-virtual-grid",
"private": true,
"source": "src/main.ts",
"module": "./dist/vue-virtual-grid.es.js",
"main": "./dist/vue-virtual-grid.umd.js",
"types": "./dist/types/main.d.ts",
"scripts": {
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types && rm -rf dist/example",
"lint": "eslint --ext .js,.ts,.vue src/",
"serve:example": "vite preview --config ./vite.example.config.js",
"build:example": "vite build --config ./vite.example.config.js"
},
"peerDependencies": {
"vue": "^2.6.14"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitejs/plugin-vue": "^1.6.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.9.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.1",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"vite": "^2.8.3",
"vite-plugin-vue2": "^1.9.3",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.14",
"vue-tsc": "^0.31.4"
},
"files": [
"dist"
],
"keywords": [
"vue",
"vuejs",
"grid",
"table",
"list",
"listview",
"virtual",
"scroll",
"scrolling",
"scrollable",
"window",
"windowing",
"columns",
"rows",
"image",
"content",
"typescript",
"ts",
"type",
"types"
]
}