-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsr-package-settings.json
More file actions
34 lines (34 loc) · 2.02 KB
/
Copy pathjsr-package-settings.json
File metadata and controls
34 lines (34 loc) · 2.02 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
{
"$comment": "Centralized JSR per-package presentation settings, reconciled on every publish by .llm/tools/release/jsr-set-package-settings.ts. These are server-side JSR settings (NOT carried in the tarball, cannot be set from deno.json) and persist across versions. Keys under 'packages' are the segment after '@netscript/'. 'defaults' applies to every publishable member; a 'packages' entry overrides per field. 'description' is omitted everywhere so it is derived dynamically from each package README tagline; set it here only to override. runtimeCompat keys: browser, deno, node, workerd (Cloudflare Workers), bun \u2014 true=supported, false=not compatible, omitted=unknown.",
"$applyOnPublishComment": "Master switch for the release-time 'Apply JSR package settings' CI step in .github/workflows/publish.yml. false = CI skips reconciling these server-side settings on publish \u2014 use when they are already applied on JSR and unchanged, so a release run does not need a settings-edit token or re-PATCH unchanged values. Flip to true for any release that changes the settings below; it may return to false afterward. Absent/unset is treated as true for back-compat. The release/jsr-set-package-settings.ts tool ignores this key (it reads only 'defaults' and 'packages'); the gate lives in the workflow.",
"applyOnPublish": true,
"defaults": {
"readmeSource": "readme",
"runtimeCompat": {
"deno": true
}
},
"packages": {
"sdk": {
"$note": "Client surface: oRPC clients + TanStack Query utilities run in browser islands.",
"runtimeCompat": {
"deno": true,
"browser": true
}
},
"fresh": {
"$note": "Fresh meta-framework integration: server on Deno, islands hydrate in the browser.",
"runtimeCompat": {
"deno": true,
"browser": true
}
},
"fresh-ui": {
"$note": "Design-system Preact components rendered server-side and hydrated in the browser.",
"runtimeCompat": {
"deno": true,
"browser": true
}
}
}
}