mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-03 07:13:04 +00:00
* Add dom-target plugin * add dom-target to bundle and website — had trouble with css otherwise * cleanup and dev setup * newline at the end, restore inline: false by default * dom-target --> drop-target, remove paste * add docs, bundle, website example * add types @goto-bus-stop this should probably be something other than Uppy.PluginTarget since it won’t accept an uppy plugin? * fix types * Update examples/dev/Dashboard.js Co-authored-by: Renée Kooi <renee@kooi.me> * type string | Element * Update packages/@uppy/drop-target/package.json Co-authored-by: Renée Kooi <renee@kooi.me> * Update packages/@uppy/drop-target/package.json Co-authored-by: Renée Kooi <renee@kooi.me> * Update examples/dev/Dashboard.js Co-authored-by: Renée Kooi <renee@kooi.me> * Create package-lock.json * Update package-lock.json * Update package-lock.json Co-authored-by: Renée Kooi <renee@kooi.me>
32 lines
670 B
JSON
32 lines
670 B
JSON
{
|
|
"name": "@uppy/drop-target",
|
|
"description": "Lets your users drag and drop files on a DOM element",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"types": "types/index.d.ts",
|
|
"keywords": [
|
|
"file uploader",
|
|
"uppy",
|
|
"uppy-plugin",
|
|
"drag-drop",
|
|
"drag",
|
|
"drop",
|
|
"dropzone",
|
|
"upload"
|
|
],
|
|
"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": "file:../utils"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "^1.0.0"
|
|
}
|
|
}
|