-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.61 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
{
"name": "husk-monorepo",
"private": true,
"version": "0.1.3",
"description": "Husk \u2014 give your agent a computer.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Hotragn/husk.git"
},
"engines": {
"node": ">=20.10"
},
"workspaces": [
"packages/*",
"apps/console"
],
"scripts": {
"build": "npm run build -w @husk-ai/core -w @husk-ai/runtime -w @husk-ai/models -w @husk-ai/sessions -w @husk-ai/browser -w @husk-ai/agent -w @husk-ai/adapters -w @husk-ai/mcp -w @husk-ai/server -w @husk-ai/sdk -w @husk-ai/cli",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"build:packages": "npm run build -w @husk-ai/core -w @husk-ai/runtime -w @husk-ai/models -w @husk-ai/sessions -w @husk-ai/browser -w @husk-ai/agent -w @husk-ai/adapters -w @husk-ai/mcp -w @husk-ai/server -w @husk-ai/sdk -w @husk-ai/cli",
"drift": "node scripts/drift-check.mjs",
"links": "node scripts/link-check.mjs",
"preflight": "node scripts/preflight.mjs",
"install-smoke": "node scripts/install-smoke.mjs",
"clean": "node scripts/clean.mjs"
},
"overrides": {
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "3.25.76"
},
"devDependencies": {
"@fastify/cors": "^11.3.0",
"@fastify/static": "^10.1.3",
"@fastify/websocket": "^11.3.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@types/node": "^22.20.1",
"@types/ws": "^8.18.1",
"fastify": "^5.12.3",
"typescript": "^5.9.3",
"vitest": "^2.1.9",
"ws": "^8.21.3",
"yaml": "^2.9.0"
}
}