-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "vue-virtual-draglist",
"version": "2.9.7",
"description": "A virtual scrolling list component that can be sorted by dragging",
"main": "dist/virtual-drag-list.min.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --fix src --ext .js",
"build": "rollup --config",
"core:update": "git submodule update --remote",
"docs:dev": "vuepress dev docs --temp .temp",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfuu/vue-virtual-drag-list.git"
},
"keywords": [
"vue",
"sort",
"drag",
"drop",
"draggable",
"sortable",
"virtual",
"virtual-list",
"big-data",
"big-list",
"infinite"
],
"author": "mfuu",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/mfuu/vue-virtual-drag-list/issues"
},
"homepage": "https://github.com/mfuu/vue-virtual-drag-list#readme",
"dependencies": {
"sortable-dnd": "^0.6.20"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.3.3",
"cross-env": "^7.0.3",
"mockjs": "^1.1.0",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"tslib": "^2.8.0",
"typescript": "^4.3.5",
"vue": "^2.6.14",
"vue-loader": "^17.2.2",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.9.10"
}
}