forked from AltanS/collie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.63 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
{
"name": "collie",
"version": "1.9.0",
"private": true,
"license": "MIT",
"description": "Collie — a mobile web UI to monitor and reply to the AI agents in your terminal, over Tailscale",
"type": "module",
"scripts": {
"start": "bun run bridge/index.ts",
"dev": "bun --watch bridge/index.ts",
"build": "bun run cli/main.ts build",
"build:web": "cd web && bun run build",
"build:cli": "bun build --compile --target=bun ./cli/main.ts --outfile bin/collie",
"web:dev": "cd web && bun run dev",
"lint": "oxlint --max-warnings 0",
"lint:fix": "oxlint --fix --max-warnings 0",
"test": "bun test ./bridge && bun test ./cli && bun test ./scripts && bash scripts/collie-ctl.test.sh && bash scripts/collie-cli.test.sh && bash scripts/check-payload-links.test.sh && bash scripts/upstream-bun.test.sh && bash scripts/check-tag.test.sh && bash scripts/check-flake-lock.test.sh && bash scripts/pre-commit.test.sh && bash packaging/aur/pkgbuild.test.sh && bash packaging/refresh.test.sh",
"test:ctl": "bash scripts/collie-ctl.test.sh",
"test:crew": "bun test ./bridge/crew/harness.test.ts",
"typecheck": "bunx tsc --noEmit"
},
"devDependencies": {
"@oxlint/plugins": "1.78.0",
"@types/bun": "latest",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^19.2.18",
"@types/web-push": "^3.6.4",
"ink-testing-library": "^4.0.0",
"jsqr": "^1.4.0",
"oxlint": "1.78.0",
"typescript": "^7.0.2"
},
"dependencies": {
"commander": "^15.0.0",
"ink": "^7.1.1",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.8"
},
"optionalDependencies": {
"web-push": "^3.6.7"
}
}