FastAPI backend (Python 3.11, MSSQL ODBC for SambaPOS, Azure DI OCR),
kitchen_db on central PG. React/TS/Vite frontend with navy sidebar layout.
Backend: auth.py (APP_SLUG=kitchen, SimpleNamespace — archive routes use
.kitchen_id/.is_admin without modification), main.py (51 migrations, scheduler,
internal router for KDS bookings feed), api/internal.py, full archive API
(31 routers: invoices, recipes, menus, sambapos, resos, newbook, disputes,
purchase_orders, etc.), models, migrations, OCR pipeline.
kitchen_id pinned to 1 (B1 — single hotel).
Frontend: AuthGate (app=kitchen, token shim for archive compat — B5b pending),
Layout (navy sidebar, 6 sections, Lucide icons, teal --app-primary),
App.tsx (Outlet pattern, UploadApp outside Layout), index.css (full :root block).
strict: false — archive components have type issues; build clean.
Note: 45 archive components call fetch('/api/...') without /kitchen/ prefix
(B5b). Runtime 404s; deferred until after initial testing.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
70 lines
No EOL
2.2 KiB
JSON
70 lines
No EOL
2.2 KiB
JSON
{
|
|
"name": "lucide-react",
|
|
"description": "A Lucide icon library package for React applications",
|
|
"version": "0.395.0",
|
|
"license": "ISC",
|
|
"homepage": "https://lucide.dev",
|
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lucide-icons/lucide.git",
|
|
"directory": "packages/lucide-react"
|
|
},
|
|
"keywords": [
|
|
"Lucide",
|
|
"React",
|
|
"Feather",
|
|
"Icons",
|
|
"Icon",
|
|
"SVG",
|
|
"Feather Icons",
|
|
"Fontawesome",
|
|
"Font Awesome"
|
|
],
|
|
"author": "Eric Fennis",
|
|
"amdName": "lucide-react",
|
|
"main": "dist/cjs/lucide-react.js",
|
|
"main:umd": "dist/umd/lucide-react.js",
|
|
"module": "dist/esm/lucide-react.js",
|
|
"unpkg": "dist/umd/lucide-react.min.js",
|
|
"typings": "dist/lucide-react.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist",
|
|
"dynamicIconImports.js",
|
|
"dynamicIconImports.js.map",
|
|
"dynamicIconImports.d.ts"
|
|
],
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.1.6",
|
|
"@testing-library/react": "^14.1.2",
|
|
"@types/react": "^18.2.37",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"jest-serializer-html": "^7.1.0",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"rollup": "^4.9.2",
|
|
"rollup-plugin-dts": "^6.1.0",
|
|
"typescript": "^4.9.5",
|
|
"vite": "5.0.13",
|
|
"vitest": "^1.1.1",
|
|
"@lucide/rollup-plugins": "1.0.0",
|
|
"@lucide/build-icons": "1.0.0",
|
|
"@lucide/shared": "1.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.5.1 || ^17.0.0 || ^18.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm typecheck && pnpm build:bundles",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.ts && rm -f dynamicIconImports.*",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --withAliases --withDynamicImports --separateAliasesFile --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
|
|
"build:bundles": "rollup -c ./rollup.config.mjs",
|
|
"typecheck": "tsc",
|
|
"typecheck:watch": "tsc -w",
|
|
"test": "pnpm build:icons && vitest run",
|
|
"test:watch": "vitest watch",
|
|
"version": "pnpm version --git-tag-version=false"
|
|
}
|
|
} |