mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-22 17:58:05 +00:00
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @uppy/angular@1.1.0 ### Minor Changes -72d2d68: Remove @uppy/utils and add @uppy/status-bar to peerDependencies ## @uppy/components@1.1.0 ### Minor Changes -72d2d68: Add @uppy/{screen-capture,status-bar,webcam} as optional peer dependencies ### Patch Changes -26bf726: Dropzone and FileInput inherit restrictions from @uppy/core ## @uppy/react@5.1.0 ### Minor Changes -72d2d68: Add @uppy/{screen-capture,status-bar,webcam} as optional peer dependencies ### Patch Changes -86f353d: Remove dashboard export from index.ts - Updated dependencies [72d2d68] - Updated dependencies [26bf726] - @uppy/components@1.1.0 ## @uppy/svelte@5.1.0 ### Minor Changes -72d2d68: Add @uppy/{screen-capture,status-bar,webcam} as optional peer dependencies ### Patch Changes - Updated dependencies [72d2d68] - Updated dependencies [26bf726] - @uppy/components@1.1.0 ## @uppy/transloadit@5.2.0 ### Minor Changes -72d2d68: Remove unused @uppy/{companion-client,provider-views} dependencies ### Patch Changes - Updated dependencies [08b64f9] - @uppy/utils@7.1.2 ## @uppy/vue@3.1.0 ### Minor Changes -72d2d68: Add @uppy/{screen-capture,status-bar,webcam} as optional peer dependencies ### Patch Changes - Updated dependencies [72d2d68] - Updated dependencies [26bf726] - @uppy/components@1.1.0 ## @uppy/onedrive@5.0.2 ### Patch Changes -5edcb2e: Fix: Enable `supportsRefreshToken` for OneDrive - Updated dependencies [08b64f9] - @uppy/utils@7.1.2 ## @uppy/utils@7.1.2 ### Patch Changes -08b64f9: fix ts issue with generateFileID and `exactOptionalPropertyTypes` ## uppy@5.1.9 ### Patch Changes - Updated dependencies [72d2d68] - Updated dependencies [5edcb2e] - @uppy/transloadit@5.2.0 - @uppy/onedrive@5.0.2 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "@uppy/transloadit",
|
|
"description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more",
|
|
"version": "5.2.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"typecheck": "tsc --build",
|
|
"test": "vitest run --environment=jsdom --silent='passed-only'"
|
|
},
|
|
"keywords": [
|
|
"file uploader",
|
|
"transloadit",
|
|
"file encoding",
|
|
"encoding",
|
|
"file processing",
|
|
"video encoding",
|
|
"crop",
|
|
"resize",
|
|
"watermark",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"dist",
|
|
"CHANGELOG.md"
|
|
],
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@uppy/tus": "workspace:^",
|
|
"@uppy/utils": "workspace:^",
|
|
"component-emitter": "^2.0.0",
|
|
"transloadit": "^4.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"jsdom": "^26.1.0",
|
|
"msw": "^2.10.4",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4",
|
|
"whatwg-fetch": "^3.6.2"
|
|
}
|
|
}
|