mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-22 18:16:26 +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.5.0 ### Minor Changes -efda84c: Migrate from 'transloadit' to '@transloadit/types' to get the types. No need to drag in the entire SDK. ### Patch Changes - Updated dependencies [54a46db] - @uppy/tus@5.1.1 ## @uppy/components@1.1.1 ### Patch Changes -fa23832: - Fix Vue components to work with kebab-case props (`:edit-file` instead of `:editFile`) ## @uppy/locales@5.1.1 ### Patch Changes -642c75d: Update cs_CZ dropPaste keys to use the correct variables. ## @uppy/tus@5.1.1 ### Patch Changes -54a46db: Fix Node.js support by conditionally setting a property which does not exist in Node.js instead of crashing. ## @uppy/vue@3.1.1 ### Patch Changes -fa23832: - Fix Vue components to work with kebab-case props (`:edit-file` instead of `:editFile`) - Updated dependencies [fa23832] - @uppy/components@1.1.1 ## uppy@5.2.3 ### Patch Changes - Updated dependencies [642c75d] - Updated dependencies [54a46db] - Updated dependencies [efda84c] - @uppy/locales@5.1.1 - @uppy/tus@5.1.1 - @uppy/transloadit@5.5.0 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.5.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": {
|
|
"@transloadit/types": "^4.1.3",
|
|
"@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",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4",
|
|
"whatwg-fetch": "^3.6.2"
|
|
}
|
|
}
|