-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.27 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
{
"name": "cfcf",
"private": true,
"version": "0.24.5",
"description": "Cerefox Code Factory (cf²) -- deterministic orchestration harness for AI coding agents",
"homepage": "https://github.com/fstamatelopoulos/cfcf",
"repository": {
"type": "git",
"url": "git+https://github.com/fstamatelopoulos/cfcf.git"
},
"license": "Apache-2.0",
"workspaces": [
"packages/core",
"packages/server",
"packages/cli",
"packages/web"
],
"scripts": {
"test": "bun test packages/core && bun test packages/server && bun test packages/cli && bun test packages/web",
"test:core": "bun test packages/core",
"test:server": "bun test packages/server",
"test:cli": "bun test packages/cli",
"test:web": "bun test packages/web",
"dev:server": "bun run --watch packages/server/src/index.ts",
"dev:web": "cd packages/web && bun run dev",
"dev:cli": "bun run packages/cli/src/index.ts",
"typecheck": "tsc --noEmit && cd packages/web && tsc -b",
"build:web": "cd packages/web && bun run build && cd ../.. && bun run scripts/embed-web-dist.ts",
"build": "scripts/build-cli.sh"
},
"devDependencies": {
"typescript": "^5.8.0",
"@types/bun": "^1.3.0"
},
"trustedDependencies": [
"onnxruntime-node",
"protobufjs"
]
}