-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"version": "1.9.0",
"name": "@rpldy/uploady",
"description": "wrapper&context component to expose and provide react-uploady functionality",
"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/uploady"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-uploady"
},
"keywords": [
"file",
"upload",
"file upload",
"react",
"hooks",
"resumable",
"library"
],
"scripts": {
"build": "node ../../../scripts/build.mjs"
},
"dependencies": {
"@rpldy/life-events": "workspace:*",
"@rpldy/shared": "workspace:*",
"@rpldy/shared-ui": "workspace:*",
"@rpldy/uploader": "workspace:*"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@testing-library/react": "^16",
"flow-bin": "^0.256.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"publishConfig": {
"access": "public"
}
}