mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +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>
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@uppy/image-editor",
|
|
"description": "Image editor and cropping UI",
|
|
"version": "4.2.0",
|
|
"license": "MIT",
|
|
"style": "dist/style.min.css",
|
|
"type": "module",
|
|
"sideEffects": [
|
|
"*.css"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"build:css": "sass --load-path=../../ src/style.scss dist/style.css && postcss dist/style.css -u cssnano -o dist/style.min.css",
|
|
"typecheck": "tsc --build"
|
|
},
|
|
"keywords": [
|
|
"file uploader",
|
|
"upload",
|
|
"uppy",
|
|
"uppy-plugin",
|
|
"image editor",
|
|
"cropper",
|
|
"crop",
|
|
"rotate",
|
|
"resize"
|
|
],
|
|
"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",
|
|
"./css/style.css": "./dist/style.css",
|
|
"./css/style.min.css": "./dist/style.min.css",
|
|
"./css/style.scss": "./src/style.scss",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@uppy/utils": "workspace:^",
|
|
"cropperjs": "^1.6.2",
|
|
"preact": "^10.26.10"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"cssnano": "^7.0.7",
|
|
"postcss": "^8.5.6",
|
|
"postcss-cli": "^11.0.1",
|
|
"sass": "^1.89.2",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|