-
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.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"dependencies": {
"@a2a-js/sdk": "^0.3.5",
"@openai/agents": "^0.1.10",
"@stackone/openai-agents-js-sessions": "^0.3.0",
"a2anet": "^2.1.0",
"better-sqlite3": "^12.4.6",
"drizzle-orm": "^0.44.7",
"express": "^5.1.0",
"mysql2": "^3.15.3",
"pg": "^8.16.3",
"uuid": "^13.0.0",
"zod": "^3.25.76"
},
"scripts": {
"build": "tsdown src/index.ts",
"dev": "tsx --env-file=.env --watch src/index.ts",
"start": "node dist/index.mjs",
"kill-server": "lsof -ti :4080 | xargs kill -9 2>/dev/null || echo 'No server running on port 4080'",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"format": "biome format --write .",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "5.0.5",
"@types/node": "24.10.0",
"@types/pg": "^8.15.6",
"drizzle-kit": "^0.31.7",
"tsdown": "0.15.12",
"tsx": "4.20.6",
"typescript": "5.9.3",
"unplugin-swc": "1.5.8",
"vite-tsconfig-paths": "5.1.4",
"vitest": "4.0.6"
}
}