uppy/packages/@uppy/components/package.json
Prakash 975317dd17
remove main from package.json (#5950)
redo of #5943 , forgot to add changesets , reverted in #5949
2025-09-04 17:39:50 +05:30

59 lines
1.3 KiB
JSON

{
"name": "@uppy/components",
"description": "Headless Uppy components, made in Preact",
"version": "1.0.1",
"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",
"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"
}
}