-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@thinkrail/monorepo",
"private": true,
"packageManager": "bun@1.4.0",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@astrojs/check": "0.9.10",
"@earendil-works/pi-agent-core": "0.84.3",
"@earendil-works/pi-ai": "0.84.3",
"@earendil-works/pi-coding-agent": "0.84.3",
"@fontsource-variable/geist": "5.3.0",
"@fontsource-variable/jetbrains-mono": "5.3.0",
"@fontsource-variable/orbitron": "5.3.0",
"@tailwindcss/vite": "4.3.1",
"@types/bun": "1.4.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"astro": "7.2.8",
"lucide-react": "1.21.0",
"mermaid": "11.16.0",
"react": "19.3.0-canary-a1124489-20260826",
"react-dom": "19.3.0-canary-a1124489-20260826",
"tailwindcss": "4.3.1",
"typebox": "1.3.7",
"typescript": "6.0.3"
}
},
"overrides": {
"react": "catalog:",
"react-dom": "catalog:"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "bun scripts/dev.ts",
"dev:server": "turbo run dev --filter=@thinkrail/server",
"dev:web": "turbo run dev --filter=@thinkrail/web",
"build:web": "turbo run build --filter=@thinkrail/web",
"build:binary": "bun run build:web && bun apps/cli/scripts/build-binary.ts",
"smoke:binary": "bun packages/artifact-tests/smoke-binary.ts",
"desktop:build": "bun run --cwd apps/desktop package:dev",
"desktop:dev": "bun run --cwd apps/desktop dev",
"desktop:package:canary": "bun run --cwd apps/desktop package:canary",
"desktop:package:stable": "bun run --cwd apps/desktop package:stable",
"smoke:desktop": "bun packages/artifact-tests/smoke.ts",
"smoke:desktop:installer": "bun packages/artifact-tests/installerSmoke.ts",
"smoke:subagents": "bun scripts/smoke-pure-pi-subagents.ts",
"typecheck": "turbo run typecheck",
"test": "bun test ./scripts/ && turbo run test",
"lint": "biome check .",
"format": "biome check --write .",
"prepare": "husky",
"e2e": "bun --preload ./e2e/idleSleepPreload.ts e2e/run.ts",
"e2e:serial": "bun --preload ./e2e/idleSleepPreload.ts e2e/run.ts --serial",
"e2e:binary": "bun --preload ./e2e/idleSleepPreload.ts e2e/run-binary.ts",
"e2e:desktop": "bun --preload ./e2e/idleSleepPreload.ts e2e/run-desktop.ts",
"test:workflows": "playwright test -c playwright.workflows.config.ts",
"e2e:full": "bun --preload ./e2e/idleSleepPreload.ts e2e/run-full.ts",
"e2e:full:headed": "bun --preload ./e2e/idleSleepPreload.ts e2e/run-full.ts --headed",
"e2e:agent": "bun --preload ./e2e/idleSleepPreload.ts e2e/run-agent.ts",
"e2e:agent:headed": "bun --preload ./e2e/idleSleepPreload.ts e2e/run-agent.ts --headed",
"e2e:headed": "bun --preload ./e2e/idleSleepPreload.ts e2e/run.ts --headed",
"e2e:ui": "bun --preload ./e2e/idleSleepPreload.ts e2e/run.ts --ui",
"check:deps": "bun scripts/check-catalog.ts",
"check:boundaries": "bun test scripts/checkModuleBoundaries.test.ts && bun scripts/check-module-boundaries.ts",
"check:seams": "bun scripts/check-binary-seams.ts",
"check:spec-surface": "bun scripts/check-spec-surface.ts",
"typography:generate": "bun --filter @thinkrail/web typography:generate",
"typography:validate": "bun --filter @thinkrail/web typography:validate",
"typography:check": "bun --filter @thinkrail/web typography:check",
"colors:generate": "bun --filter @thinkrail/web colors:generate",
"colors:check": "bun --filter @thinkrail/web colors:check",
"spacing:generate": "bun --filter @thinkrail/web spacing:generate",
"spacing:check": "bun --filter @thinkrail/web spacing:check"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@earendil-works/pi-coding-agent": "catalog:",
"@thinkrail/artifact-tests": "workspace:*",
"@thinkrail/contracts": "workspace:*",
"@thinkrail/server": "workspace:*",
"@thinkrail/shared": "workspace:*",
"@playwright/test": "1.61.0",
"husky": "9.1.7",
"mdast-util-from-markdown": "2.0.3",
"pi-spec-graph": "workspace:*",
"pi-todos": "workspace:*",
"turbo": "2.9.18",
"typescript": "catalog:"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}