mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +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/components@1.2.0 ### Minor Changes -850c1cb: Introduce `useImageEditor` to build your own UI for using our image editor in React, Vue, and Svelte. ### Patch Changes -680052b: - Fix Vue components to work with kebab-case props (`:edit-file` instead of `:editFile`) - Updated dependencies [850c1cb] - @uppy/image-editor@4.2.0 ## @uppy/image-editor@4.2.0 ### Minor Changes -850c1cb: Introduce `useImageEditor` to build your own UI for using our image editor in React, Vue, and Svelte. ## @uppy/react@5.2.0 ### Minor Changes -850c1cb: Introduce `useImageEditor` to build your own UI for using our image editor in React, Vue, and Svelte. ### Patch Changes - Updated dependencies [680052b] - Updated dependencies [850c1cb] - @uppy/components@1.2.0 ## @uppy/svelte@5.2.0 ### Minor Changes -850c1cb: Introduce `useImageEditor` to build your own UI for using our image editor in React, Vue, and Svelte. ### Patch Changes - Updated dependencies [680052b] - Updated dependencies [850c1cb] - @uppy/components@1.2.0 ## @uppy/transloadit@5.5.0 ### Minor Changes -680052b: Migrate from 'transloadit' to '@transloadit/types' to get the types. No need to drag in the entire SDK. ### Patch Changes - Updated dependencies [680052b] - @uppy/tus@5.1.1 ## @uppy/vue@3.2.0 ### Minor Changes -850c1cb: Introduce `useImageEditor` to build your own UI for using our image editor in React, Vue, and Svelte. ### Patch Changes -680052b: - Fix Vue components to work with kebab-case props (`:edit-file` instead of `:editFile`) - Updated dependencies [680052b] - Updated dependencies [850c1cb] - @uppy/components@1.2.0 ## @uppy/locales@5.1.1 ### Patch Changes -680052b: Update cs_CZ dropPaste keys to use the correct variables. ## @uppy/tus@5.1.1 ### Patch Changes -680052b: Fix Node.js support by conditionally setting a property which does not exist in Node.js instead of crashing. ## uppy@5.2.3 ### Patch Changes - Updated dependencies [680052b] - Updated dependencies [680052b] - Updated dependencies [680052b] - Updated dependencies [850c1cb] - @uppy/locales@5.1.1 - @uppy/tus@5.1.1 - @uppy/transloadit@5.5.0 - @uppy/image-editor@4.2.0 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "@uppy/tus",
|
|
"description": "Resumable uploads for Uppy using Tus.io",
|
|
"version": "5.1.1",
|
|
"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",
|
|
"uppy",
|
|
"uppy-plugin",
|
|
"upload",
|
|
"resumable",
|
|
"tus"
|
|
],
|
|
"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/utils": "workspace:^",
|
|
"tus-js-client": "^4.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"jsdom": "^26.1.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^"
|
|
}
|
|
}
|