-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.57 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.57 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
{
"name": "relayauth",
"private": true,
"packageManager": "npm@10.9.4",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"typecheck": "turbo typecheck",
"dev": "turbo dev",
"dev:server": "tsx packages/server/src/server.ts",
"dev:observer": "npm --workspace @relayauth/observer run dev",
"dev:all": "concurrently -n server,observer -c blue,magenta 'npm run dev:server' 'npm run dev:observer'",
"demo:all": "concurrently -n server,observer,demo -c blue,magenta,cyan 'npm run dev:server' 'npm run dev:observer' 'sleep 5 && npm run demo:trigger'",
"demo:trigger": "npx tsx scripts/observer-demo.ts",
"demo:1": "npx tsx scripts/observer-demo.ts --scenario=1",
"demo:2": "npx tsx scripts/observer-demo.ts --scenario=2",
"demo:3": "npx tsx scripts/observer-demo.ts --scenario=3",
"demo:4": "npx tsx scripts/observer-demo.ts --scenario=4",
"start": "tsx packages/server/src/server.ts",
"smoke:local": "bash scripts/smoke-local.sh",
"token:dev": "bash scripts/generate-dev-token.sh",
"e2e": "npx tsx scripts/e2e.ts"
},
"devDependencies": {
"@agent-relay/config": "^4.0.33",
"@agent-relay/sdk": "^4.0.33",
"@relayauth/types": "0.1.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^24.6.0",
"agent-trajectories": "^0.5.7",
"concurrently": "^8.2.2",
"ignore": "^7.0.5",
"tsx": "^4.20.6",
"turbo": "^2",
"typescript": "^5.7",
"yaml": "^2.8.3"
},
"workspaces": [
"packages/*",
"packages/sdk/typescript"
],
"dependencies": {
"better-sqlite3": "^11.10.0"
}
}