mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
New app for professional time tracking with timer, projects, clients, and reports. Local-first architecture with IndexedDB + mana-sync. - Timer store with start/stop/resume, auto-save every 10s - 6 local-store collections: clients, projects, timeEntries, tags, templates, settings - TimerCard with live counter, project selector, billable toggle - EntryItem with inline-expand editing, EntryList with day grouping - EntryForm modal with quick-duration buttons (15m-4h) - QuickStart pills from recent entries - Projects page: card grid, color coding, budget progress, inline CRUD - Clients page: billing rates, project rollup, inline CRUD - Reports page: stats grid, billable breakdown, project/daily charts - i18n: German + English - Registered in shared-branding with icon, URLs, dev scripts - Guest seed: 2 clients, 3 projects, 5 time entries, 4 tags Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
432 B
JSON
22 lines
432 B
JSON
{
|
|
"name": "@taktik/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"
|
|
}
|
|
}
|