mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-28 12:37:00 +00:00
Steps taken:
```bash
cp -R package-template packages/@uppy/file-input
vim packages/@uppy/file-input/{README.md,package.json}
# figure out how to exit
vim packages/@uppy/file-input/package.json # Update descriptions
```
30 lines
681 B
JSON
30 lines
681 B
JSON
{
|
|
"name": "@uppy/file-input",
|
|
"description": "Simple UI of a file input button that works with Uppy right out of the box",
|
|
"version": "0.25.5",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"jsnext:main": "src/index.js",
|
|
"types": "types/index.d.ts",
|
|
"keywords": [
|
|
"file uploader",
|
|
"upload",
|
|
"uppy",
|
|
"uppy-plugin",
|
|
"file-input"
|
|
],
|
|
"homepage": "https://uppy.io",
|
|
"bugs": {
|
|
"url": "https://github.com/transloadit/uppy/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transloadit/uppy.git"
|
|
},
|
|
"dependencies": {
|
|
"@uppy/utils": "^0.25.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "^0.25.5"
|
|
}
|
|
}
|