- Control Plane API with Gemini integration - Executors: Deploy, Analytics, Marketing - MCP Adapter for Continue integration - VSCode/VSCodium extension - Tool registry and run tracking - In-memory storage for local dev - Terraform infrastructure setup
31 lines
728 B
JSON
31 lines
728 B
JSON
{
|
|
"name": "@productos/control-plane",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@google-cloud/firestore": "^7.11.0",
|
|
"@google-cloud/storage": "^7.14.0",
|
|
"@fastify/cors": "^10.0.0",
|
|
"@fastify/helmet": "^13.0.0",
|
|
"@fastify/rate-limit": "^10.0.0",
|
|
"@fastify/sensible": "^6.0.0",
|
|
"fastify": "^5.0.0",
|
|
"zod": "^3.23.8",
|
|
"nanoid": "^5.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.5.4",
|
|
"eslint": "^9.8.0"
|
|
}
|
|
}
|