-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.78 KB
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
67
68
69
70
71
72
73
74
{
"name": "vue-virtual-sortable",
"version": "2.2.0",
"description": "A virtual scrolling list component that can be sorted by dragging",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup --config",
"publish": "npm publish",
"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-sortable.git"
},
"keywords": [
"vue",
"scroll",
"list",
"sort",
"drag",
"drop",
"draggable",
"sortable",
"virtual",
"virtual-list",
"virtual-scroll",
"big-data",
"big-list",
"infinite"
],
"author": "mfuu",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/mfuu/vue-virtual-sortable/issues"
},
"homepage": "https://github.com/mfuu/vue-virtual-sortable#readme",
"dependencies": {
"sortable-dnd": "^0.7.3"
},
"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",
"@types/node": "^20",
"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"
}
}