-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.8 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
67
68
69
70
71
72
73
74
75
76
{
"name": "vue-tree-dnd",
"author": "James Cuénod",
"description": "Sortable drag-n-drop tree structure for Vue3 with no dependencies",
"license": "MIT",
"keywords": [
"vue",
"tree",
"sortable",
"nested",
"draggable",
"dnd",
"drag-n-drop",
"drag-and-drop",
"drag",
"drop",
"tree-view",
"tree-structure",
"treeview"
],
"repository": {
"type": "git",
"url": "https://github.com/jcuenod/vue-tree-dnd"
},
"private": false,
"version": "0.2.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --build --emitDeclarationOnly --declaration",
"preview": "vite preview"
},
"main": "./dist/vue-tree-dnd.umd.cjs",
"module": "./dist/vue-tree-dnd.js",
"types": "./lib/env.d.ts",
"exports": {
".": {
"require": {
"types": "./lib/env.d.ts",
"default": "./dist/vue-tree-dnd.umd.cjs"
},
"import": {
"types": "./lib/env.d.ts",
"default": "./dist/vue-tree-dnd.js"
}
}
},
"files": [
"dist",
"lib/**/*.d.ts"
],
"peerDependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/types": "^7.22.10",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"path": "^0.12.7",
"prettier": "^3.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
}
}