-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 991 Bytes
/
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
{
"name": "@zemd/drag-and-drop",
"version": "0.0.3",
"type": "module",
"license": "Apache-2.0",
"description": "A simple framework agnostic drag and drop library",
"author": {
"name": "Dmytro Zelenetskyi",
"email": "[email protected]",
"url": "https://codeandgin.co"
},
"homepage": "https://github.com/zemd/drag-and-drop",
"repository": {
"type": "git",
"url": "https://github.com/zemd/drag-and-drop.git"
},
"bugs": {
"url": "https://github.com/zemd/drag-and-drop/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"release": "tsc && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/bun": "latest",
"@zemd/tsconfig": "^1.2.0",
"typescript": "^5.3.3"
}
}