-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "garcon",
"version": "0.3.4",
"description": "A cross-platform agentic coding UI for Claude Code, Codex, and Opencode",
"type": "module",
"main": "server/main.ts",
"workspaces": [
"common",
"server",
"web",
"server-agents/*"
],
"files": [
"server/",
"server-agents/",
"common/",
"scripts/",
"web/build/",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfal/garcon.git"
},
"bugs": {
"url": "https://github.com/cfal/garcon/issues"
},
"scripts": {
"setup": "bun install && bun install --cwd integration-tests",
"build": "bun scripts/build-web.js",
"build-exe:compile": "bun scripts/build-exe.js",
"build-exe:smoke": "bun scripts/smoke-exe.js",
"build-exe:smoke:linux-x64": "bun scripts/smoke-exe.js --target=linux-x64",
"build-exe:smoke:darwin-arm64": "bun scripts/smoke-exe.js --target=darwin-arm64",
"build-exe:smoke:windows-x64": "bun scripts/smoke-exe.js --target=windows-x64",
"build-exe": "bun run check && bun run test && bun run build && bun run build-exe:compile && bun run build-exe:smoke",
"server": "bun server/main.ts",
"start": "bun scripts/start.js",
"bench:search": "bun scripts/benchmark-chat-search.js",
"test": "bun run test:server && bun run --cwd web test",
"test:server": "bun test common/__tests__/*.test.js && bun test scripts/__tests__/*.test.js && bun scripts/run-test-files.js 'server-agents/**/__tests__/*.{test.js,test.ts}' && bun test server/__tests__/*.test.js && bun test server/chats/search/__tests__/*.test.js && bun scripts/run-test-files.js 'server/**/__tests__/*.test.js'",
"test:integration": "bun run --cwd integration-tests test",
"test:integration:server": "bun run --cwd integration-tests test:server",
"test:integration:e2e": "bun run --cwd integration-tests test:e2e",
"test:live": "bun run --cwd integration-tests test:live",
"test:live:claude": "bun run --cwd integration-tests test:live:claude",
"test:live:codex": "bun run --cwd integration-tests test:live:codex",
"lint": "bun run --cwd web lint",
"check": "bun run lint && bun run --cwd web check",
"typecheck": "bun run --filter '@garcon/server-agent-*' --if-present typecheck && bun run --cwd server typecheck && bun run --cwd web check && bun run --cwd integration-tests typecheck",
"help": "bun run server --help"
},
"keywords": [
"claude code",
"codex",
"opencode",
"ai",
"mobile",
"web"
],
"author": "Alex Lau <github@alau.ca>",
"license": "GPL-3.0"
}