-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "torvaix",
"version": "0.1.0",
"private": true,
"description": "Torvaix: Workspace-first AI Operating System — local-first, privacy-first, no telemetry.",
"license": "AGPL-3.0",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/Yashasm18/Torvaix.git"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:services\" \"wait-on http://localhost:3000 && open-cli http://localhost:3000\"",
"dev:services": "npm run dev --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "vitest",
"test:ci": "vitest run",
"test:memory": "vitest run packages/memory",
"test:providers": "vitest run packages/providers",
"test:router": "vitest run packages/router",
"test:agent": "vitest run packages/agent",
"test:mcp": "vitest run packages/mcp",
"benchmark": "npx tsx scripts/benchmark.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^26.0.0",
"@types/ws": "^8.18.1",
"concurrently": "^10.0.3",
"kill-port": "^2.0.1",
"open-cli": "^9.0.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^2.1.0",
"wait-on": "^9.0.10"
}
}