mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 22:39:40 +02:00
Introduces a new shared package containing transport-agnostic business logic services for Matrix bots and the Gateway. This enables: - Individual bots to import shared services - A unified Gateway bot to combine all features - Code reuse without duplication Services included: - TodoService: Task management with projects, priorities, dates - CalendarService: Events, calendars, reminders - AiService: Ollama LLM integration, chat sessions, vision - ClockService: Timers, alarms, world clocks (API client) - Placeholder modules for Nutrition, Quotes, Stats, Docs Key features: - Pluggable storage providers (file-based, in-memory, custom) - German natural language input parsing - NestJS module system with dependency injection - Fully testable in isolation https://claude.ai/code/session_015bwcqVRiFmSydYTjvDJGTc
38 lines
986 B
JSON
38 lines
986 B
JSON
{
|
|
"name": "@manacore/bot-services",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Shared business logic services for Matrix bots and Gateway",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./todo": "./src/todo/index.ts",
|
|
"./calendar": "./src/calendar/index.ts",
|
|
"./clock": "./src/clock/index.ts",
|
|
"./ai": "./src/ai/index.ts",
|
|
"./nutrition": "./src/nutrition/index.ts",
|
|
"./quotes": "./src/quotes/index.ts",
|
|
"./stats": "./src/stats/index.ts",
|
|
"./docs": "./src/docs/index.ts",
|
|
"./shared": "./src/shared/index.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "^11.0.20",
|
|
"@nestjs/config": "^4.0.2",
|
|
"date-fns": "^4.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
"@nestjs/config": "^3.0.0 || ^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|