-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.94 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
50
51
52
53
54
55
{
"name": "eris-competition",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"sdk",
"core",
"example",
"dashboard"
],
"scripts": {
"anvil": "tsx core/src/cli/anvil.ts",
"sim:realtime": "tsx core/src/cli/sim-realtime.ts",
"backtest": "tsx core/src/cli/backtest.ts",
"competition": "tsx core/src/cli/competition.ts",
"inference-proxy": "tsx core/src/cli/inferenceProxy.ts",
"agent-state": "tsx core/src/cli/agentState.ts",
"gen:local-constants": "tsx scripts/genLocalConstants.ts",
"gen:method-selectors": "tsx scripts/genMethodSelectors.ts",
"gen:state-dump": "tsx scripts/genStateDump.ts",
"flow:market-maker": "tsx core/src/flow/market-maker.ts",
"check:ordering": "tsx core/src/cli/checkOrdering.ts",
"stress:rpc": "tsx core/src/cli/rpcStress.ts",
"manifest": "tsx core/src/cli/manifest.ts",
"check:strategy": "tsx scripts/checkStrategyCode.ts",
"check:boundaries": "tsx scripts/checkImportBoundaries.ts",
"bundle:agent": "tsx scripts/bundleAgent.ts",
"agent:build": "infra/docker-agent/build.sh",
"agent:selftest": "infra/docker-agent/self-test.sh",
"agent:reap": "infra/docker-agent/reap.sh",
"dashboard": "npm run dev -w dashboard",
"dashboard:build": "npm run build -w dashboard",
"dashboard:serve": "tsx dashboard/server/serve.ts",
"explorer": "infra/blockscout/explorer.sh up",
"explorer:down": "infra/blockscout/explorer.sh down",
"explorer:reset": "infra/blockscout/explorer.sh reset",
"explorer:tag": "infra/blockscout/explorer.sh tag",
"build:contracts": "forge build",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/*.test.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.98.0",
"viem": "^2.39.3",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}