creado planilla-agent
Some checks failed
build-and-deploy / filter (push) Successful in 1s
build-and-deploy / build (push) Failing after 5s
build-and-deploy / deploy (push) Has been skipped

This commit is contained in:
2025-06-05 15:40:53 -06:00
parent d570eec221
commit 950404dd85
26 changed files with 2681 additions and 1534 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "conversation-layer-agent",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src --ext ts --exec \"ts-node src/index.ts\""
},
"dependencies": {
"express": "^4.18.2",
"@google/genai": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^16.5.0"
},
"devDependencies": {
"typescript": "^5.4.5",
"@types/node": "^20.11.19",
"@types/express": "^4.17.21",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2"
}
}