managarten/apps-archived/memoro/apps/landing/services/admin-api/package.json
Till-JS 61d181fbc2 chore: archive inactive projects to apps-archived/
Move inactive projects out of active workspace:
- bauntown (community website)
- maerchenzauber (AI story generation)
- memoro (voice memo app)
- news (news aggregation)
- nutriphi (nutrition tracking)
- reader (reading app)
- uload (URL shortener)
- wisekeep (AI wisdom extraction)

Update CLAUDE.md documentation:
- Add presi to active projects
- Document archived projects section
- Update workspace configuration

Archived apps can be re-activated by moving back to apps/

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 07:03:59 +01:00

42 lines
951 B
JSON

{
"name": "memoro-admin-api",
"version": "1.0.0",
"description": "Admin API service for Memoro - handles AI image generation and persona management",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"fastify",
"typescript",
"replicate",
"ai",
"image-generation"
],
"author": "Memoro Team",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/rate-limit": "^10.0.1",
"fastify": "^5.1.0",
"replicate": "^0.34.1",
"zod": "^3.23.8",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.17.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}