-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "cotrackpro-voice-center",
"version": "1.0.0",
"description": "CoTrackPro AI Voice Contact Center — Twilio + ElevenLabs + Anthropic MCP",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"test": "node --import tsx --test tests/*.test.ts",
"generate-audio": "tsx scripts/generate-prerecorded.ts",
"configure:twilio": "tsx scripts/configure-twilio-number.ts",
"show:twilio": "tsx scripts/show-twilio-number.ts",
"list:phones": "tsx scripts/list-phone-mappings.ts",
"lint:config": "tsx scripts/lint-config.ts",
"go-live": "bash scripts/go-live.sh",
"preflight": "npm run typecheck && npm test && npm run lint:config"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.1",
"@aws-sdk/client-dynamodb": "^3.1065.0",
"@aws-sdk/lib-dynamodb": "^3.1065.0",
"@clerk/backend": "^3.5.0",
"@fastify/formbody": "^8.0.2",
"@fastify/websocket": "^11.0.1",
"dotenv": "^17.4.2",
"fastify": "^5.2.1",
"pino": "^10.3.1",
"pino-pretty": "^13.0.0",
"twilio": "^6.0.2",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/node": "^25.9.0",
"@types/ws": "^8.5.13",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}