package.json 644 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@uppy/pluginname",
  3. "description": "A plugin for uppy that does XYZ",
  4. "version": "0.25.5",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "jsnext:main": "src/index.js",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "plugin name and other keywords",
  12. "uppy",
  13. "uppy-plugin"
  14. ],
  15. "homepage": "https://uppy.io",
  16. "bugs": {
  17. "url": "https://github.com/transloadit/uppy/issues"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/transloadit/uppy.git"
  22. },
  23. "dependencies": {
  24. "@uppy/utils": "^0.25.5"
  25. },
  26. "peerDependencies": {
  27. "@uppy/core": "^0.25.5"
  28. }
  29. }