-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
53 lines (53 loc) · 1.31 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
{
"version": "1.9.0",
"name": "@rpldy/tus-uploady",
"description": "wrapper&context component to expose and provide react-uploady functionality with TUS protocol support",
"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/yoavniran/react-uploady.git",
"directory": "packages/tus-uploady"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-uploady"
},
"keywords": [
"file",
"upload",
"file upload",
"react",
"hooks",
"chunked uploads",
"tus",
"resumable"
],
"scripts": {
"build": "node ../../../scripts/build.mjs"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rpldy/shared": "workspace:*",
"@rpldy/shared-ui": "workspace:*",
"@rpldy/tus-sender": "workspace:*"
},
"devDependencies": {
"@rpldy/retry-hooks": "workspace:*",
"@rpldy/upload-button": "workspace:*",
"@rpldy/uploady": "workspace:*",
"flow-bin": "^0.256.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"peerDependencies": {
"react": ">=16.8"
}
}