-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
33 lines (33 loc) · 1.66 KB
/
tools.json
File metadata and controls
33 lines (33 loc) · 1.66 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
{
"$schema": "./tools.schema.json",
"$comment": "Declares each tool whose per-platform packages this repo publishes. publish.mts iterates over `tools` and runs the same download/verify/stage/publish flow per entry. Tools without a matching block in packages/build-infra/release-assets.json are skipped at publish time — letting a tool's package dirs + this entry land ahead of its first socket-btm release. Adding a new tool: drop a new key here, scaffold the per-platform dirs under packages/, and (when socket-btm ships a release) bump release-assets.json. Removing one: delete the key + matching package dirs + (optionally) deprecate on npm via `npm deprecate <pkg>@\"*\" \"<msg>\"`.",
"tools": {
"opentui": {
"shape": "per-platform-addon",
"umbrellaDir": "opentui",
"platformDirPrefix": "opentui-",
"binaryFileName": "opentui.node",
"assetExtension": ".node",
"platforms": [
{ "releaseSuffix": "darwin-arm64" },
{ "releaseSuffix": "darwin-x64" },
{ "releaseSuffix": "linux-arm64" },
{ "releaseSuffix": "linux-arm64-musl" },
{ "releaseSuffix": "linux-x64" },
{ "releaseSuffix": "linux-x64-musl" },
{ "releaseSuffix": "win32-arm64" },
{ "releaseSuffix": "win32-x64" }
]
},
"onnxruntime": {
"shape": "umbrella-only",
"umbrellaDir": "onnxruntime",
"umbrellaAssets": [
{ "remoteName": "ort.wasm", "localName": "ort.wasm" },
{ "remoteName": "ort.mjs", "localName": "ort.mjs" },
{ "remoteName": "ort-sync.cjs", "localName": "ort-sync.cjs" },
{ "remoteName": "ort-sync.mjs", "localName": "ort-sync.mjs" }
]
}
}
}