uppy/package-template/package.json
Renée Kooi 2c29fa5f77
Add a template for plugin packages.
This can be copied to kickstart a new package:

```bash
cp -R package-template packages/@uppy/dashboard
vim packages/@uppy/dashboard/README.md # update PLUGINNAME and other all caps references
vim packages/@uppy/dashboard/package.json # add a description and fix the `name`
vim packages/@uppy/dashboard/src/index.js # implement!
vim packages/@uppy/dashboard/types/index.d.ts # implement!
```
2018-06-14 16:31:19 +02:00

29 lines
644 B
JSON

{
"name": "@uppy/pluginname",
"description": "A plugin for uppy that does XYZ",
"version": "0.25.5",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"types": "types/index.d.ts",
"keywords": [
"file uploader",
"plugin name and other keywords",
"uppy",
"uppy-plugin"
],
"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"
}
}