mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-24 02:38:58 +00:00
| Package | Version | Package | Version | | --------------- | ------- | --------------- | ------- | | @uppy/companion | 4.13.3 | @uppy/tus | 3.5.5 | | @uppy/svelte | 3.1.5 | uppy | 3.25.4 | - @uppy/svelte: do not attempt removing plugin before it's created (Antoine du Hamel / #5186) - docs: Update `facebook.mdx` (Evgenia Karunus) - @uppy/tus: fix no headers passed to companion if argument is a function (netdown / #5182) - @uppy/companion: fix google drive gsuite export large size (Milan Nakum / #5144) - meta: Improve provider docs: Box & Zoom (Evgenia Karunus / #5166) - meta: add MDX file to `lint-staged` list (Antoine du Hamel / #5174) - @uppy/companion: handle ws `'error'` event (Mikael Finstad / #5167)
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@uppy/svelte",
|
|
"description": "Uppy plugin that helps integrate Uppy into your Svelte project.",
|
|
"svelte": "src/index.js",
|
|
"module": "dist/index.mjs",
|
|
"main": "dist/index.js",
|
|
"version": "3.1.5",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "yarn run build",
|
|
"validate": "svelte-check"
|
|
},
|
|
"homepage": "https://uppy.io",
|
|
"bugs": {
|
|
"url": "https://github.com/transloadit/uppy/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transloadit/uppy.git"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
"@tsconfig/svelte": "^5.0.0",
|
|
"rollup": "^2.60.2",
|
|
"rollup-plugin-svelte": "^7.0.0",
|
|
"svelte": "^4.0.0",
|
|
"svelte-check": "^3.0.0",
|
|
"svelte-preprocess": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"@uppy/dashboard": "workspace:^",
|
|
"@uppy/drag-drop": "workspace:^",
|
|
"@uppy/progress-bar": "workspace:^",
|
|
"@uppy/status-bar": "workspace:^",
|
|
"svelte": "^3.0.0 || ^4.0.0 || ^5.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"file uploader",
|
|
"uppy",
|
|
"uppy-plugin",
|
|
"svelte"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
]
|
|
}
|