-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1019 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1019 Bytes
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
{
"name": "@arcturus3/react-drag-drop",
"version": "1.0.1",
"description": "Simple, flexible components and hooks for drag and drop in React.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"/build"
],
"scripts": {
"start": "parcel examples/src/index.html --out-dir examples/build",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"author": "Arti Schmidt",
"license": "MIT",
"repository": "github:arcturus3/react-drag-drop",
"keywords": [
"react",
"hooks",
"components",
"drag-and-drop",
"drag",
"drop"
],
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"parcel": "^1.12.4",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"typescript": "^4.1.3"
},
"alias": {
"@arcturus3/react-drag-drop": "./src"
}
}