forked from rpldy/react-uploady
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"version": "0.11.6",
"name": "@rpldy/upload-button",
"description": "upload button component and asUploadButton HOC",
"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",
"keywords": [
"file",
"upload",
"file upload",
"react",
"hooks",
"upload button"
],
"repository": {
"type": "git",
"url": "https://github.com/rpldy/react-uploady.git",
"directory": "packages/ui/upload-button"
},
"scripts": {
"build": "node ../../../scripts/build.js",
"flow:copy": "flow-copy-source ./src ./lib --ignore **/*.test.js --ignore **/*.mock.js; cp src/types.js lib/types.js"
},
"dependencies": {
"@rpldy/shared-ui": "^0.11.6"
},
"devDependencies": {
"@rpldy/retry": "^0.11.5",
"@rpldy/uploady": "^0.11.6",
"flow-bin": "^0.147.0",
"styled-components": "^5.2.0"
},
"peerDependencies": {
"react": ">=16.8.x",
"react-dom": ">=16.8.x"
},
"publishConfig": {
"access": "public"
}
}