mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 14:46:43 +02:00
feat(inventar): add configurable inventory management app
SvelteKit web app with schema-less collections, 8 field types, 8 templates (electronics, books, furniture, etc.), 3 views (list/grid/table), hierarchical locations, categories, full-text search, and localStorage persistence. Includes ManaScore audit (28/100 Alpha), Dockerfile, SSO prep, and i18n (DE/EN). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2e4bb9bad7
commit
86d1da3587
65 changed files with 5050 additions and 0 deletions
22
apps/inventar/packages/shared/package.json
Normal file
22
apps/inventar/packages/shared/package.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"name": "@inventar/shared",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./types": "./src/types/index.ts",
|
||||
"./constants": "./src/constants/index.ts"
|
||||
},
|
||||
"scripts": {
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@manacore/shared-types": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue