-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1003 Bytes
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": "agentgate",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*",
"dashboard"
],
"scripts": {
"dev": "tsx scripts/dev.ts",
"dev:seed": "tsx scripts/dev.ts --seed",
"dev:live": "tsx scripts/live.ts",
"dev:dashboard": "npm run dev -w dashboard",
"demo": "tsx scripts/demo.ts",
"typecheck": "npm run typecheck --workspaces --if-present && tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"build": "npm run build -w dashboard",
"agent": "tsx packages/buyer-agent/src/main.ts",
"agentgate": "tsx packages/cli/src/bin.ts",
"smoke:live": "tsx scripts/smoke-live-read.ts"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"overrides": {
"postcss": "^8.5.10",
"tsup": {
"esbuild": "^0.28.1"
}
}
}