-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 879 Bytes
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
{
"name": "@archlab/backend",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"bin": {
"archlab": "./dist/cli.js"
},
"scripts": {
"dev": "tsx watch --exclude ../../brain --exclude ../frontend --exclude ../shared src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"cli": "tsx src/cli.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.1",
"@archlab/shared": "*",
"@huggingface/transformers": "^4.2.0",
"express": "^4.21.2",
"node-pty": "^1.1.0",
"tree-sitter": "^0.22.4",
"tree-sitter-swift": "^0.7.1",
"typescript": "^5.9.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"tsx": "^4.19.2"
}
}