-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.36 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.36 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
{
"name": "chittyreception",
"version": "1.0.0",
"description": "ChittyOS answering and orchestration service with OpenPhone/Twilio integration",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"build": "tsc",
"build:mcp": "tsc mcp-server.ts --outDir . --module nodenext --moduleResolution nodenext --target es2022 --esModuleInterop --skipLibCheck",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production",
"test": "vitest",
"test:unit": "vitest run --reporter=verbose",
"test:integration": "vitest run --reporter=verbose --config vitest.integration.config.ts",
"test:watch": "vitest watch",
"tail": "wrangler tail",
"typecheck": "tsc --noEmit",
"sync:dry": "DRY_RUN=true ts-node scripts/sync.ts",
"sync:live": "DRY_RUN=false ts-node scripts/sync.ts",
"mcp": "node mcp-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.1",
"@neondatabase/serverless": "^1.0.2",
"@notionhq/client": "^5.3.0",
"@octokit/graphql": "^9.0.3",
"dotenv": "^17.2.3",
"hono": "^4.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240529.0",
"@types/node": "^24.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.0",
"vitest": "^4.0.7",
"wrangler": "^4.45.4"
}
}