-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"version": "1.9.1",
"name": "@rpldy/upload-drop-zone",
"description": "drop zone (container) component to initiate file and folder content uploads",
"author": "yoav niran (https://github.com/yoavniran)",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"main:dev": "src/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"homepage": "https://react-uploady.org",
"repository": {
"type": "git",
"url": "https://github.com/rpldy/react-uploady.git",
"directory": "packages/ui/upload-drop-zone"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-uploady"
},
"keywords": [
"file",
"upload",
"file upload",
"react",
"hooks",
"drag&drop",
"d&d"
],
"scripts": {
"build": "node ../../../scripts/build.mjs"
},
"dependencies": {
"@rpldy/shared-ui": "workspace:*",
"html-dir-content": "^0.3.2"
},
"devDependencies": {
"@rpldy/shared": "workspace:*",
"@rpldy/upload-button": "workspace:*",
"@rpldy/uploady": "workspace:*",
"@testing-library/react": "^16",
"flow-bin": "^0.256.0",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.13"
},
"peerDependencies": {
"react": ">=16.8"
},
"publishConfig": {
"access": "public"
}
}