mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-22 09:48:06 +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/companion@6.2.0 ### Minor Changes -0c8dd19: New Companion option `uploadHeaders` which can be used to include a static set of headers with every request sent to all upload destinations. ## @uppy/dashboard@5.0.4 ### Patch Changes -5e166a1: Fix form appending for shadow dom - Updated dependencies [ad50314] - @uppy/utils@7.1.3 ## @uppy/utils@7.1.3 ### Patch Changes -ad50314: Allow `getSafeFileId` to accept `UppyFile` ## uppy@5.1.11 ### Patch Changes - Updated dependencies [5e166a1] - @uppy/dashboard@5.0.4 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
45 lines
1,010 B
JSON
45 lines
1,010 B
JSON
{
|
|
"name": "@uppy/utils",
|
|
"description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.",
|
|
"version": "7.1.3",
|
|
"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"
|
|
],
|
|
"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": {
|
|
"lodash": "^4.17.21",
|
|
"preact": "^10.5.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.199",
|
|
"jsdom": "^26.1.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|