-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.54 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vue3-resizable",
"version": "1.0.0-alpha.3",
"description": "Vue3 is used for components with resizable and draggable elements.",
"private": false,
"type": "module",
"main": "./dist/umd/l-resize.umd.js",
"module": "./dist/es/l-resize.js",
"unpkg": "./dist/umd/l-resize.umd.js",
"sideEffects": [
"dist/index.css"
],
"exports": {
".": {
"import": "./dist/es/l-resize.js",
"require": "./dist/umd/l-resize.umd.js",
"types": "./dist/types/index.d.ts"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/types/index.d.ts"
]
}
},
"files": [
"dist"
],
"author": {
"name": "LostElk",
"email": "[email protected]"
},
"keywords": [
"vue",
"vue3",
"resize",
"resizable",
"component",
"调整大小"
],
"homepage": "https://lostelkbyte.github.io/vue3-resizable/",
"bugs": "https://github.com/LostElkByte/vue3-resizable/issues",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "npm run build-only && npm run move-style",
"preview": "vite preview",
"build-only": "run-p build-umd build-es",
"build-umd": "vite build --config vite.umd.config.ts",
"build-es": "vite build --config vite.es.config.ts",
"move-style": "mv dist/es/index.css dist/index.css",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prepublishOnly": "npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"deploy": "npm run docs:build && gh-pages -d docs/.vitepress/dist"
},
"dependencies": {
"@vitepress-demo-preview/component": "^2.3.2",
"@vitepress-demo-preview/plugin": "^1.2.3",
"any-touch": "^2.2.0",
"vue": "^3.4.29"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"gh-pages": "^6.2.0",
"npm-run-all2": "^6.1.2",
"sass": "^1.72.0",
"typescript": "~5.4.0",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.8.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-vue-devtools": "^7.0.18",
"vue-tsc": "^2.0.6"
}
}