-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "blackbox",
"version": "0.1.0",
"private": true,
"description": "Nightly CI for coding agents: capture, replay, improve, and ship rule changes",
"workspaces": [
"packages/*",
"examples/*",
"apps/*"
],
"scripts": {
"build": "tsc --build",
"test": "bun run --filter '*' test",
"test:integration": "bun vitest run tests/",
"typecheck": "tsc --build",
"check": "bun x ultracite check",
"check:fix": "bun x ultracite fix --unsafe",
"clean": "tsc --build --clean && bun run --filter '*' clean",
"dev": "bun run --parallel --filter '*' dev",
"dev:ui": "bun run --filter @blackbox/desktop tauri:dev",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/node": "^20.10.0",
"lefthook": "^2.0.15",
"typescript": "^5.3.0",
"ultracite": "7.0.12",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}