forked from phphe/he-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "@he-tree/vue3",
"version": "1.2.8",
"description": "Vue tree component. Features: draggable, drag sortable, virtualization list, Vue2, Vue3, Typescript, lazy load, RTL. Vue 树组件. 可拖拽, 拖拽排序, 虚拟列表, Vue2, Vue3, Typescript, 延迟加载子节点, 从右往左显示.",
"files": [
"dist",
"types"
],
"unpkg": "dist/he-tree-vue3.js",
"main": "dist/he-tree-vue3.cjs.js",
"module": "dist/he-tree-vue3.esm.js",
"types": "types/lib-entry.d.ts",
"author": "phphe <[email protected]> (https://github.com/phphe)",
"homepage": "https://hetree.phphe.com",
"bugs": {
"url": "https://github.com/phphe/he-tree/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/phphe/he-tree.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"build-lib": "rollup -c scripts/build.js & node scripts/build.js --report",
"watch-lib": "rollup -c scripts/build.js --watch"
},
"dependencies": {
"@babel/runtime": "^7.7.7",
"draggable-helper": "^6.0.5",
"helper-js": "^2.0.7",
"tslib": "^2"
},
"devDependencies": {
"@rollup-use/core": "^0.0.8",
"@rollup-use/vue3-ts": "^0.0.4",
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.0.5",
"pug": "^3.0.2",
"sass": "^1.26.5",
"typescript": "^4.3.2",
"vite": "^2.4.4",
"vue": "^3.0.5",
"vue-tsc": "^0.2.2"
},
"peerDependencies": {
"vue": "^3"
}
}