-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 822 Bytes
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
{
"name": "collie",
"version": "0.17.0",
"private": true,
"license": "MIT",
"description": "Collie — a mobile web UI to monitor and reply to your Herdr agent herd over Tailscale",
"type": "module",
"scripts": {
"start": "bun run bridge/index.ts",
"dev": "bun --watch bridge/index.ts",
"build": "bun run typecheck && cd web && bun install && bun run typecheck && bun run build",
"build:web": "cd web && bun run build",
"web:dev": "cd web && bun run dev",
"test": "bun test ./bridge && bash scripts/collie-ctl.test.sh",
"test:ctl": "bash scripts/collie-ctl.test.sh",
"typecheck": "bunx tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"@types/web-push": "^3.6.4",
"typescript": "^5"
},
"optionalDependencies": {
"web-push": "^3.6.7"
}
}