-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.79 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
{
"name": "@compass/workspace",
"private": true,
"type": "module",
"description": "Compass workspace root. Coordinates the bun workspace (one root bun.lock + hoisted node_modules) and pins shared dependency versions via the catalog. devenv/nix owns the bun/node toolchains (pinned in tools/toolchain/versions/*.nix); this catalog owns the shared package versions. The overrides are reviewed floors/pins, not floats: @tanstack/virtual-core 3.17.8 is the floor @rigelbuild/solid-virtual (the message-surface virtualizer) resolves to. The codegen plugins are not here — buf and every plugin it invokes come from the pinned nixpkgs (devenv.nix), so the version stamped into each generated header is a store path rather than a lockfile resolution.",
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"tools/*"
],
"catalog": {
"@astrojs/check": "^0.9.10",
"@astrojs/starlight": "^0.41.5",
"@biomejs/biome": "2.5.4",
"@effect/opentelemetry": "0.64.0",
"@effect/platform": "^0.97.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.220.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.220.0",
"@opentelemetry/resources": "^2.0.0",
"@opentelemetry/sdk-logs": "^0.220.0",
"@opentelemetry/sdk-metrics": "^2.0.0",
"@opentelemetry/sdk-trace-base": "^2.0.0",
"@opentelemetry/sdk-trace-node": "^2.0.0",
"@opentelemetry/sdk-trace-web": "^2.0.0",
"@opentelemetry/semantic-conventions": "^1.33.0",
"@types/bun": "^1.4.0",
"astro": "^7.1.6",
"effect": "^3.22.1",
"github-slugger": "^2.0.0",
"sharp": "^0.35.0",
"stylelint": "^17.14.1",
"typescript": "^6.0.3"
}
},
"overrides": {
"@tanstack/virtual-core": "3.17.8",
"@tanstack/query-core": "5.101.4"
},
"devDependencies": {
"@biomejs/biome": "catalog:"
}
}