mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
addresses #6297 I'll raise another PR which would include deps which require code changes
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"name": "@uppy/components",
|
|
"description": "Headless Uppy components, made in Preact",
|
|
"version": "1.2.0",
|
|
"license": "MIT",
|
|
"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 && postcss ../image-editor/src/cropper.scss -u cssnano -o ./dist/image-editor.css",
|
|
"migrate": "node migrate.mjs",
|
|
"typecheck": "tsc --build"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./css/style.css": "./dist/styles.css",
|
|
"./css/image-editor.css": "./dist/image-editor.css",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1",
|
|
"dequal": "^2.0.3",
|
|
"preact": "^10.29.2",
|
|
"pretty-bytes": "^7.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.0.6",
|
|
"@uppy/core": "workspace:^",
|
|
"cssnano": "^8.0.1",
|
|
"postcss": "^8.5.15",
|
|
"postcss-cli": "^11.0.1",
|
|
"tailwindcss": "^4.0.6",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"@uppy/image-editor": "workspace:^",
|
|
"@uppy/screen-capture": "workspace:^",
|
|
"@uppy/webcam": "workspace:^"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@uppy/image-editor": {
|
|
"optional": true
|
|
},
|
|
"@uppy/screen-capture": {
|
|
"optional": true
|
|
},
|
|
"@uppy/webcam": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|