-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 KB
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
{
"name": "drag-kit",
"version": "1.1.0",
"description": "Lightweight cross-platform drag library supporting mobile, tablet, PC with Vue2/Vue3/React compatibility and full TypeScript support",
"main": "lib/drag-kit.umd.js",
"module": "lib/drag-kit.mjs",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "vite build",
"dev": "vite --config vite.config.ts"
},
"author": "Sailing",
"license": "MIT",
"homepage": "https://github.com/SailingCoder/drag-kit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SailingCoder/drag-kit.git"
},
"bugs": {
"url": "https://github.com/SailingCoder/drag-kit/issues"
},
"keywords": [
"drag",
"draggable",
"mobile",
"tablet",
"ipad",
"pc",
"touch",
"vue",
"vue3",
"vue2",
"react",
"typescript",
"cross-platform"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.31"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.31",
"less": "^4.2.0",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}