-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "modeling-agent",
"version": "0.1.0-alpha.0",
"private": true,
"description": "Evidence-backed mathematical modeling competition agent",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "npm run typecheck && npm test && npm run check:python",
"check:python": "python3 -m unittest discover -s python/tests -v && python3 -m py_compile python/modeling_agent/*.py python/tests/*.py",
"cli": "tsx src/cli/main.ts",
"dev": "tsx watch src/server/main.ts",
"dev:web": "npm --prefix apps/web run dev",
"start": "node dist/src/server/main.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"smoke": "tsx src/cli/main.ts run tests/fixtures/basic --runtime fake --execution local"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "0.84.1",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"commander": "15.0.0",
"fastify": "5.11.3"
},
"devDependencies": {
"@types/node": "24.10.1",
"tsx": "4.23.12",
"typescript": "5.9.3",
"vitest": "4.1.10",
"yaml": "2.9.0"
}
}