{ "name": "@manacore/bot-services", "version": "0.1.0", "private": true, "description": "Shared business logic services for Matrix bots and Gateway", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./todo": { "types": "./dist/todo/index.d.ts", "default": "./dist/todo/index.js" }, "./calendar": { "types": "./dist/calendar/index.d.ts", "default": "./dist/calendar/index.js" }, "./clock": { "types": "./dist/clock/index.d.ts", "default": "./dist/clock/index.js" }, "./ai": { "types": "./dist/ai/index.d.ts", "default": "./dist/ai/index.js" }, "./session": { "types": "./dist/session/index.d.ts", "default": "./dist/session/index.js" }, "./transcription": { "types": "./dist/transcription/index.d.ts", "default": "./dist/transcription/index.js" }, "./credit": { "types": "./dist/credit/index.d.ts", "default": "./dist/credit/index.js" }, "./i18n": { "types": "./dist/i18n/index.d.ts", "default": "./dist/i18n/index.js" }, "./nutrition": { "types": "./dist/nutrition/index.d.ts", "default": "./dist/nutrition/index.js" }, "./quotes": { "types": "./dist/quotes/index.d.ts", "default": "./dist/quotes/index.js" }, "./stats": { "types": "./dist/stats/index.d.ts", "default": "./dist/stats/index.js" }, "./docs": { "types": "./dist/docs/index.d.ts", "default": "./dist/docs/index.js" }, "./shared": { "types": "./dist/shared/index.d.ts", "default": "./dist/shared/index.js" } }, "scripts": { "build": "tsc", "type-check": "tsc --noEmit", "clean": "rm -rf dist", "lint": "eslint .", "prepublishOnly": "pnpm build" }, "dependencies": { "@nestjs/common": "^11.0.20", "@nestjs/config": "^4.0.2", "date-fns": "^4.1.0", "ioredis": "^5.4.2" }, "peerDependencies": { "@nestjs/common": "^10.0.0 || ^11.0.0", "@nestjs/config": "^3.0.0 || ^4.0.0" }, "devDependencies": { "@types/ioredis": "^5.0.0", "@types/node": "^24.10.1", "typescript": "^5.9.3" } }