-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "archcode",
"version": "0.0.7",
"private": true,
"description": "ArchCode — Not just a coding agent. An always-on workbench for AI engineering.",
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": ["apps/*", "packages/*"],
"bin": {
"archcode": "./apps/server/src/main.ts"
},
"release": {
"minimumDirectUpdateFrom": "0.0.3"
},
"scripts": {
"web:build": "bun run --cwd apps/web build",
"dev": "turbo run dev",
"build": "bun run typecheck && bun run scripts/build.ts",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"tool-contract:measure": "bun run --cwd packages/agent-core tool-contract:measure",
"prompt:live-eval": "bun run packages/agent-core/scripts/prompt-live-eval.ts"
},
"dependencies": {
"@archcode/agent-core": "workspace:*",
"@archcode/protocol": "workspace:*",
"@archcode/server": "workspace:*",
"@archcode/utils": "workspace:*",
"@archcode/web": "workspace:*"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/semver": "^7.7.1",
"css-tree": "^3.2.1",
"jsdom": "^29.1.1",
"semver": "^7.8.5",
"turbo": "^2.9.14",
"typescript": "^6.0.3",
"vite": "^6.3.0"
},
"patchedDependencies": {
"@sigstore/core@3.2.1": "patches/@sigstore%2Fcore@3.2.1.patch"
}
}