mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-27 20:27:13 +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.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. ## @uppy/components@1.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/core@5.0.1 ## @uppy/core@5.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/utils@7.0.1 ## @uppy/dashboard@5.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/provider-views@5.0.1 - @uppy/utils@7.0.1 - @uppy/core@5.0.1 ## @uppy/drag-drop@5.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/utils@7.0.1 - @uppy/core@5.0.1 ## @uppy/provider-views@5.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/utils@7.0.1 - @uppy/core@5.0.1 ## @uppy/react@5.0.2 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/components@1.0.1 - @uppy/dashboard@5.0.1 - @uppy/utils@7.0.1 - @uppy/core@5.0.1 ## @uppy/svelte@5.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/components@1.0.1 - @uppy/dashboard@5.0.1 - @uppy/core@5.0.1 ## @uppy/utils@7.0.1 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. ## @uppy/vue@3.0.2 ### Patch Changes -49522ec: Remove preact/compat imports in favor of preact, preventing JSX type issues in certain setups. - Updated dependencies [49522ec] - @uppy/components@1.0.1 - @uppy/dashboard@5.0.1 - @uppy/core@5.0.1 ## uppy@5.1.1 ### Patch Changes -7abd062: Add missing styles for drag-drop and status-bar - Updated dependencies [49522ec] - @uppy/provider-views@5.0.1 - @uppy/dashboard@5.0.1 - @uppy/drag-drop@5.0.1 - @uppy/core@5.0.1 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "@uppy/components",
|
|
"description": "Headless Uppy components, made in Preact",
|
|
"version": "1.0.1",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"type": "module",
|
|
"sideEffects": [
|
|
"*.css"
|
|
],
|
|
"keywords": [
|
|
"uppy",
|
|
"uppy-plugin",
|
|
"headless",
|
|
"components",
|
|
"preact"
|
|
],
|
|
"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"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"build:css": "tailwindcss -m -i ./src/input.css -o ./dist/styles.css",
|
|
"migrate": "node migrate.mjs",
|
|
"typecheck": "tsc --build"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./css/style.css": "./dist/styles.css",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@uppy/audio": "workspace:^",
|
|
"@uppy/core": "workspace:^",
|
|
"@uppy/image-editor": "workspace:^",
|
|
"@uppy/remote-sources": "workspace:^",
|
|
"@uppy/screen-capture": "workspace:^",
|
|
"@uppy/webcam": "workspace:^",
|
|
"clsx": "^2.1.1",
|
|
"dequal": "^2.0.3",
|
|
"preact": "^10.5.13",
|
|
"pretty-bytes": "^6.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.0.6",
|
|
"tailwindcss": "^4.0.6",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|