mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:01:08 +02:00
- Project detail page (/projects/[id]): stats, budget progress, inline edit, full entry list with billing value calculation - Client detail page (/clients/[id]): stats, project cards, entry list, billing value summary - Duration rounding: configurable increment (1-15 min) and method (up/down/nearest), applied automatically when timer stops - ConfirmDialog component: reusable modal for destructive actions - Confirmation required before deleting entries, projects, and clients - 18 new rounding tests (67 total, all passing) - i18n: added deleteConfirm keys for DE and EN Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "@manacore/nestjs-integration",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "NestJS integration package for Mana Core authentication and credits",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./guards": {
|
|
"types": "./dist/guards/index.d.ts",
|
|
"import": "./dist/guards/index.js",
|
|
"require": "./dist/guards/index.js"
|
|
},
|
|
"./decorators": {
|
|
"types": "./dist/decorators/index.d.ts",
|
|
"import": "./dist/decorators/index.js",
|
|
"require": "./dist/decorators/index.js"
|
|
},
|
|
"./interceptors": {
|
|
"types": "./dist/interceptors/index.d.ts",
|
|
"import": "./dist/interceptors/index.js",
|
|
"require": "./dist/interceptors/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint .",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/credit-operations": "workspace:*",
|
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
"@nestjs/config": "^3.0.0 || ^4.0.0",
|
|
"@nestjs/core": "^10.0.0 || ^11.0.0",
|
|
"reflect-metadata": "^0.1.13 || ^0.2.0",
|
|
"rxjs": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
"@nestjs/config": "^3.0.0 || ^4.0.0",
|
|
"@nestjs/core": "^10.0.0 || ^11.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|