forked from stepanenko3/vue3-nestable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "vue3-nestable",
"version": "3.0.3",
"description": "A simple drag & drop hierarchical list made as a vue component.",
"author": "Artem Stepanenko <[email protected]>",
"homepage": "https://github.com/stepanenko3/vue3-nestable.git",
"license": "MIT",
"module": "dist/index.umd.js",
"main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"keywords": [
"vue",
"vue 3",
"vue-nestable",
"vue3-nestable",
"vue nestable",
"vue 3 nestable",
"vue tree",
"vue 3 tree"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"immutability-helper": "^3.1.1",
"path": "^0.12.7",
"vue": "^3.2.31"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.1",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"vite": "^2.9.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 11"
]
}