Files
nextcraft/package.json
T
CIAgent dda9569b80 docs(P01): complete ai-service-scaffolding phase
---ci---
phase: 1
milestone: v0.2
status: complete
---/ci---

REQ-2-001/002/003 complete. apps/ai-service: FastAPI + provider-agnostic
LLM layer (ollama-cloud/local/mock) + D-016 SSE envelope + 20 tests
(mock-only, cloud-free guard) + ruff + turbo/pnpm integration.
2026-09-11 15:40:30 +00:00

22 lines
647 B
JSON

{
"name": "nextcraft",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@12.3.4",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules",
"ai:dev": "turbo run dev --filter=@nextcraft/ai-service",
"ai:test": "turbo run test --filter=@nextcraft/ai-service",
"ai:bootstrap": "turbo run bootstrap --filter=@nextcraft/ai-service",
"ai:lint": "turbo run lint --filter=@nextcraft/ai-service"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.7.2"
}
}