1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 06:39:34 +01:00
effigenix/frontend/packages/ui/package.json
Sebastian Frick bf09e3b747 feat(scanner): Mobile Scanner App mit echten Produktionsaufträgen
Scanner-App  Tauri v2 Android App mit
Login, Barcode-Scanner, Consume/Move/Book-Flows und Aufgabenliste.

TasksPage lädt echte RELEASED/IN_PROGRESS Produktionsaufträge via API,
Consume-Flow nutzt den konkreten Auftrag für korrekte Rezept-Skalierung
statt blind den ersten IN_PROGRESS-Auftrag zu nehmen.

Backend: FindStockByBatchId Use Case + REST-Endpoint für Stock-Lookup
per Chargennummer.
2026-03-27 15:25:17 +01:00

61 lines
1.2 KiB
JSON

{
"name": "@effigenix/ui",
"version": "0.1.0",
"private": true,
"description": "Shared React component library with Tailwind v4 theme",
"type": "module",
"exports": {
".": {
"source": "./src/index.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./theme.css": "./src/theme.css"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src/theme.css"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm"
],
"dts": true,
"clean": true,
"sourcemap": true,
"splitting": false,
"external": [
"react",
"react-dom"
]
}
}