-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.52 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.52 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
{
"name": "garcon",
"version": "0.2.3",
"description": "A cross-platform agentic coding UI for Claude Code, Codex, and Opencode",
"type": "module",
"main": "server/main.js",
"files": [
"server/",
"common/",
"web/build/",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfal/garcon.git"
},
"bugs": {
"url": "https://github.com/cfal/garcon/issues"
},
"scripts": {
"install": "bun install --cwd server && bun install --cwd web",
"build": "bun run --cwd web build",
"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.js",
"start": "bun run build && bun run server",
"test": "for f in server/**/__tests__/*.test.js; do bun test \"$f\" || exit 1; done && bun run --cwd web test",
"check": "bun run --cwd web check",
"typecheck": "bun run --cwd server typecheck && bun run --cwd web check",
"help": "bun run server --help"
},
"keywords": [
"claude code",
"codex",
"opencode",
"ai",
"mobile",
"web"
],
"author": "Alex Lau <github@alau.ca>",
"license": "GPL-3.0"
}