ti-pote/package.json
ordinarthur 674109ea22 feat: initial project setup — Phase 0
Monorepo pnpm avec NestJS backend en architecture hexagonale.
- Structure hexagonale complète (ports, adapters, domain entities)
- 9 entities TypeORM (Home, User, Device, Credentials, Session, Message, Memory, Timer)
- Migration initiale SQL avec pgvector support
- Docker Compose (PostgreSQL 16 + pgvector + Redis 7)
- Config partagée (tsconfig, ESLint, Prettier)
- Outbound ports définis (STT, TTS, LLM, Cache, Storage, VectorStore)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-27 09:01:52 +01:00

14 lines
414 B
JSON

{
"name": "ti-pote",
"version": "0.0.1",
"private": true,
"description": "Robot animatronique de bureau personnel — modulaire, imprimé en 3D, propulsé par l'IA",
"scripts": {
"dev": "pnpm --filter @ti-pote/backend dev",
"build": "pnpm --filter @ti-pote/backend build",
"start": "pnpm --filter @ti-pote/backend start:prod",
"lint": "pnpm -r lint",
"format": "pnpm -r format"
}
}