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/transloadit@5.1.0 ### Minor Changes -6f76412: Use the `transloadit` Node.js SDK's exported Assembly types instead of our inaccurate, hand-rolled ones. **Warning** The names of our type exports here are unchanged, but they do pack slightly different types. Overall you'll find they are both more complete, but also more loose. Runtime wise there should be no breaking changes, but it could mean you may need a couple of extra guards to make TypeScript happy. A cool benefit from the new types tho, is that Robot parameters will now autocomplete for you. More information on these types, and our approach rolling them out, can be found here <https://transloadit.com/blog/2025/09/nodejs-sdk-v4/#our-approach-to-type-retrofitting> ## @uppy/components@1.0.3 ### Patch Changes -34639ba: add imageThumbnail prop to FilesList/FilesGrid ## @uppy/svelte@5.0.2 ### Patch Changes -da754b7: Fix props reactivity. Now when the value of a prop you pass to a component changes, it is actually picked up. - Updated dependencies [34639ba] - @uppy/components@1.0.3 ## uppy@5.1.3 ### Patch Changes - Updated dependencies [6f76412] - @uppy/transloadit@5.1.0 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
63 lines
1.5 KiB
JSON
63 lines
1.5 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.1.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/companion-client": "workspace:^",
|
|
"@uppy/provider-views": "workspace:^",
|
|
"@uppy/tus": "workspace:^",
|
|
"@uppy/utils": "workspace:^",
|
|
"component-emitter": "^2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"jsdom": "^26.1.0",
|
|
"msw": "^2.10.4",
|
|
"transloadit": "^4.0.2",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4",
|
|
"whatwg-fetch": "^3.6.2"
|
|
}
|
|
}
|