-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.45 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
45
46
47
48
49
{
"name": "imessage-codex-agent-render",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Production-oriented private iMessage agent starter powered by Spectrum and Codex",
"type": "module",
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:security": "vitest run test/security --maxWorkers=1",
"test:integration": "vitest run test/integration --maxWorkers=1",
"test:chaos": "vitest run test/chaos",
"docs:check": "node scripts/check-docs.mjs",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"codex:login": "codex login --device-auth",
"codex:status": "codex login status",
"render:validate": "render blueprints validate render.yaml"
},
"dependencies": {
"@openai/codex": "0.147.0",
"@openai/codex-sdk": "0.147.0",
"drizzle-orm": "0.45.2",
"express": "5.2.1",
"libphonenumber-js": "1.13.11",
"pg": "8.23.0",
"pg-boss": "12.27.0",
"pino": "10.3.1",
"spectrum-ts": "12.7.0",
"supermemory": "4.25.4",
"zod": "4.4.3"
},
"devDependencies": {
"@types/express": "5.0.6",
"@types/node": "22.19.15",
"@types/pg": "8.21.0",
"drizzle-kit": "0.31.10",
"tsx": "4.23.12",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}