-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 4.11 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
100
101
102
103
{
"name": "zuse",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"build": "turbo run build",
"build:desktop": "turbo run build --filter=renderer --filter=desktop",
"dev": "node scripts/dev.mjs",
"dev:turbo": "turbo run dev --filter=renderer --filter=desktop",
"dev:desktop": "node scripts/dev.mjs",
"test:dev-runner": "node --test scripts/dev-instance.test.mjs",
"test:icons": "node --test scripts/icon-runtime.test.mjs scripts/check-icons.test.mjs",
"test:architecture": "node --test scripts/check-architecture-boundaries.test.mjs",
"icons:install-paid": "node scripts/install-paid-icons.mjs",
"icons:status": "node scripts/check-icons.mjs",
"postinstall": "node scripts/install-paid-icons.mjs",
"kill-port": "node scripts/kill-port.mjs",
"lint": "biome check .",
"format": "biome format --write .",
"check-types": "node scripts/check-architecture-boundaries.mjs && node scripts/check-api-terminology.mjs && turbo run check-types",
"check:api-terminology": "node scripts/check-api-terminology.mjs",
"check:architecture": "node scripts/check-architecture-boundaries.mjs",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:system": "turbo run test:system --filter=@zuse/system-tests",
"test:zusehq-release": "node scripts/verify-zusehq-release.mjs",
"test:desktop": "turbo run test:desktop --filter=@zuse/system-tests",
"test:all": "turbo run test test:desktop",
"test:live-agents": "cd apps/server && bun run test:live-agents",
"schemas:generate": "node scripts/generate-settings-schemas.mjs",
"verify:backfill": "tsx scripts/verify-backfill.ts",
"diagnostics:inspect": "node scripts/diagnostics-inspect.mjs",
"analytics:provision": "node scripts/provision-analytics.mjs",
"analytics:provision:dry-run": "node scripts/provision-analytics.mjs --dry-run",
"benchmark:toolchain": "node scripts/benchmark-toolchain.mjs",
"check:fast": "vp check",
"discord:setup": "node --env-file=.env scripts/setup-discord-community.mjs",
"discord:setup:dry-run": "node --env-file=.env scripts/setup-discord-community.mjs --dry-run",
"discord:enhance": "node --env-file=.env scripts/enhance-discord-community.mjs",
"discord:enhance:dry-run": "node --env-file=.env scripts/enhance-discord-community.mjs --dry-run",
"rebuild:pty": "cd apps/desktop && electron-rebuild -f -w node-pty",
"dist:mac": "NODE_ENV=production bun run build:desktop && cd apps/desktop && bun run dist:mac",
"dist:mac:unsigned": "NODE_ENV=production bun run build:desktop && cd apps/desktop && bun run dist:mac:unsigned",
"dist:linux": "NODE_ENV=production bun run build:desktop && cd apps/desktop && bun run dist:linux",
"dist:linux:unsigned": "NODE_ENV=production bun run build:desktop && cd apps/desktop && bun run dist:linux:unsigned"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@effect/vitest": "4.0.0-beta.102",
"prettier": "catalog:",
"tsx": "4.23.0",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "4.1.10",
"vite-plus": "0.2.5"
},
"engines": {
"node": ">=22.13"
},
"packageManager": "bun@1.3.10",
"workspaces": {
"packages": [
"apps/*",
"infra/*",
"packages/*",
"tests/*",
"tools/*"
],
"catalog": {
"@effect/platform-node": "4.0.0-beta.102",
"@effect/sql-pg": "4.0.0-beta.102",
"@effect/vitest": "4.0.0-beta.102",
"@types/node": "^22.15.3",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"effect": "4.0.0-beta.102",
"eslint": "^9.39.1",
"fuzzysort": "^3.1.0",
"prettier": "^3.7.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"turbo": "^2.9.7",
"typescript": "5.9.2",
"vitest": "4.1.10"
}
},
"overrides": {
"@effect/platform-node": "4.0.0-beta.102",
"@effect/sql-pg": "4.0.0-beta.102",
"@effect/vitest": "4.0.0-beta.102",
"effect": "4.0.0-beta.102",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"dependencies": {
"@openai/codex": "^0.144.5"
},
"patchedDependencies": {
"@legendapp/list@3.3.3": "patches/@legendapp%2Flist@3.3.3.patch",
"@effect/platform-node@4.0.0-beta.102": "patches/@effect%2Fplatform-node@4.0.0-beta.102.patch"
}
}