mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-21 09:18:45 +00:00
```bash
mkdir -p packages/@uppy
cp -R package-template packages/@uppy/utils
vim packages/@uppy/utils/{README.md,package.json}
```
Next up, copying the implementation.
22 lines
541 B
JSON
22 lines
541 B
JSON
{
|
|
"name": "@uppy/utils",
|
|
"description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.",
|
|
"version": "0.25.5",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"jsnext:main": "src/index.js",
|
|
"types": "types/index.d.ts",
|
|
"keywords": [
|
|
"file uploader",
|
|
"uppy"
|
|
],
|
|
"homepage": "https://uppy.io",
|
|
"bugs": {
|
|
"url": "https://github.com/transloadit/uppy/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transloadit/uppy.git"
|
|
},
|
|
"dependencies": {}
|
|
}
|