- Turborepo monorepo with apps/web and packages/database, sdk-python - Next.js 15 app with professional landing page (dark theme, emerald accent) - Prisma schema: Trace, DecisionPoint, Span, Event models with full indexing - Docker Compose: web (port 4200), postgres:16, redis:7, migrate service - Python SDK package stubs: init, trace decorator, log_decision, integrations - Multi-stage Dockerfile for standalone Next.js production build
22 lines
449 B
JSON
22 lines
449 B
JSON
{
|
|
"name": "@agentlens/database",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"db:generate": "prisma generate",
|
|
"db:push": "prisma db push",
|
|
"db:migrate": "prisma migrate dev"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^6.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"prisma": "^6.3.0",
|
|
"typescript": "^5.7"
|
|
}
|
|
}
|