-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
{
"name": "switchyard",
"private": true,
"type": "module",
"engines": {
"node": ">=22 <25"
},
"scripts": {
"dev": "tsx src/server.ts",
"affirm": "tsx src/affirm-cli.ts",
"build:ui": "vite build --config ui/vite.config.ts",
"dev:ui": "vite --config ui/vite.config.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit && tsc -p ui --noEmit",
"verify": "tsx scripts/verify-worker-parity.ts",
"db:generate": "drizzle-kit generate",
"deploy": "sh scripts/deploy-nas.sh",
"init-worker": "tsx scripts/init-worker.ts",
"build:worker-image": "docker build -f Dockerfile.worker -t switchyard-worker . && docker build -f Dockerfile.egress-proxy -t switchyard-egress-proxy .",
"build:worker-image-codex": "docker build -f Dockerfile.worker.codex -t switchyard-worker-codex .",
"build:worker-image-gemini": "docker build -f Dockerfile.worker.gemini -t switchyard-worker-gemini .",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@hono/node-server": "^2.0.8",
"@hono/zod-validator": "^0.8.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.11.1",
"dompurify": "^3.4.11",
"drizzle-orm": "^0.45.2",
"fetch-to-node": "^2.1.0",
"highlight.js": "^11.11.1",
"hono": "^4.12.28",
"marked": "^18.0.5",
"marked-highlight": "^2.2.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.5",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3",
"vitest": "^4.1.10"
}
}