-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "@tinywisp/vue-tree",
"version": "3.2.2",
"main": "lib/vue-tree.cjs.js",
"module": "lib/vue-tree.esm.js",
"unpkg": "lib/vue-tree.min.js",
"author": "TinyWisp",
"license": "MIT",
"url": "https://github.com/TinyWisp/vue-tree",
"homepage": "https://github.com/TinyWisp/vue-tree",
"keywords": [
"vue",
"tree",
"vue3",
"vue-tree"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TinyWisp/vue-tree.git"
},
"scripts": {
"dev": "vite --config vite.docs.config.js",
"test:unit": "vitest --coverage --config vitest.config.js",
"build:docs": "vite build --config vite.docs.config.js",
"build:lib": "rollup --bundleConfigAsCjs --config build.lib.config.js"
},
"dependencies": {
"vue": "^3.2.36"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.3.0",
"@vitejs/plugin-vue": "^4.3.3",
"@vitest/coverage-c8": "^0.27.2",
"@vue/compiler-sfc": "^3.2.45",
"@vue/test-utils": "^2.2.7",
"axios": "^1.2.3",
"cross-env": "^7.0.3",
"jsdom": "^21.0.0",
"minimist": "^1.2.7",
"postcss": "^8.3.6",
"regenerator-runtime": "^0.13.9",
"rollup": "^3.10.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-vue": "^6.0.0",
"vite": "^4.0.4",
"vitest": "^0.27.2",
"vue-router": "^4.0.12"
},
"engines": {
"node": ">=12"
}
}