-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
{
"name": "vue3-drag-layout",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "",
"author": "Jesse Wang <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ajesses/vue3-drag-layout#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ajesses/vue3-drag-layout.git"
},
"bugs": "https://github.com/ajesses/vue3-drag-layout/issues",
"keywords": [
"vuejs",
"vuejs3",
"component",
"vuejs3 component",
"drag component",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"scripts": {
"examples": "pnpm dev --filter ./examples",
"build": "node ./scripts/build.js",
"release": "node ./scripts/release.js",
"lint": "eslint .",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^9.13.0",
"mitt": "^3.0.0",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.36.0",
"@interactjs/actions": "1.10.2",
"@interactjs/auto-scroll": "1.10.2",
"@interactjs/auto-start": "1.10.2",
"@interactjs/dev-tools": "1.10.2",
"@interactjs/interactjs": "1.10.2",
"@interactjs/modifiers": "1.10.2",
"@types/node": "^18.14.6",
"@vitejs/plugin-vue": "^4.0.0",
"@vue3-drag-layout/components": "workspace:*",
"@vue3-drag-layout/utils": "workspace:*",
"chalk": "^5.2.0",
"element-resize-detector": "^1.2.1",
"enquirer": "^2.3.6",
"eslint": "^8.35.0",
"less": "^4.1.3",
"lint-staged": "^13.1.2",
"minimist": "^1.2.8",
"pnpm": "^7.28.0",
"semver": "^7.3.8",
"typescript": "^4.9.5",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-dts": "^2.1.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"eslintConfig": {
"extends": "@antfu"
}
}