-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 KB
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
{
"version": "1.13.0",
"name": "@rpldy/upload-url-input",
"description": "input component to enter a URL (or any string for that matter) to be sent as an upload",
"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-url-input"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-uploady"
},
"keywords": [
"url upload",
"upload",
"react"
],
"scripts": {
"build": "node ../../../scripts/build.mjs"
},
"dependencies": {
"@rpldy/shared": "workspace:*",
"@rpldy/shared-ui": "workspace:*"
},
"devDependencies": {
"@rpldy/uploady": "workspace:*",
"flow-bin": "^0.291.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"publishConfig": {
"access": "public"
}
}