-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "mom",
"version": "0.1.0",
"private": true,
"description": "MoM (Mixture of Models) — Anthropic Messages API gateway that fans out to multiple advisor models and aggregates their references",
"workspaces": [
"web"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:web": "npm run build --workspace=web",
"dev": "tsx watch --env-file=.env src/index.ts",
"dev:web": "npm run dev --workspace=web",
"dev:all": "concurrently -n gateway,web -c cyan,magenta \"npm:dev\" \"npm:dev:web\"",
"start": "node --env-file=.env dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --test --import tsx test/*.test.ts",
"sync-pricing": "node --env-file=.env scripts/sync-pricing.mjs"
},
"dependencies": {
"@fastify/static": "^7.0.4",
"@lobehub/icons": "^5.13.0",
"fastify": "^4.28.1",
"undici": "^6.19.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"concurrently": "^9.1.0",
"tsx": "^4.19.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=22.13.0"
}
}