2e857b09b7
Clears the open Dependabot alerts on `Hmbown/DeepSeek-TUI`:
* GHSA-26hh-7cqf-hhc6 (high) — Next.js App Router middleware /
proxy bypass via segment-prefetch routes; fixed in 15.5.18.
* Four mermaid CVEs (all medium) — Gantt-chart infinite-loop
DoS, `classDef` HTML injection, configuration CSS injection,
`classDefs` CSS injection; fixed in 11.15.0.
Also bumps `eslint-config-next` to 15.5.18 to track the Next.js
release. `npm run build` is clean on the regenerated lockfile.
These are web/ only — the Rust TUI binary doesn't pull in any of
this. Affects the separately-deployed deepseek-tui.com site.
97 lines
2.0 KiB
TypeScript
97 lines
2.0 KiB
TypeScript
// AUTO-GENERATED by web/scripts/derive-facts.mjs at prebuild.
|
|
// DO NOT EDIT — re-run `npm run prebuild` (or just `npm run build`) after changing the parent repo.
|
|
// To override at runtime, write the same shape to KV under key "facts:current".
|
|
|
|
export interface ProviderFact { id: string; label: string; env: string }
|
|
|
|
export interface RepoFacts {
|
|
generatedAt: string;
|
|
version: string | null;
|
|
crates: string[];
|
|
sandboxBackends: string[];
|
|
providers: ProviderFact[];
|
|
defaultModel: string | null;
|
|
nodeEngines: string | null;
|
|
toolCount: number | null;
|
|
license: string | null;
|
|
latestRelease: string | null;
|
|
}
|
|
|
|
export const FACTS: RepoFacts = {
|
|
"generatedAt": "2026-05-12T03:14:50.815Z",
|
|
"version": "0.8.30",
|
|
"crates": [
|
|
"agent",
|
|
"app-server",
|
|
"cli",
|
|
"config",
|
|
"core",
|
|
"execpolicy",
|
|
"hooks",
|
|
"mcp",
|
|
"protocol",
|
|
"secrets",
|
|
"state",
|
|
"tools",
|
|
"tui",
|
|
"tui-core"
|
|
],
|
|
"sandboxBackends": [
|
|
"landlock (Linux)",
|
|
"seatbelt (macOS)",
|
|
"AppContainer / restricted tokens (Windows)"
|
|
],
|
|
"providers": [
|
|
{
|
|
"id": "deepseek",
|
|
"label": "DeepSeek",
|
|
"env": "DEEPSEEK_API_KEY"
|
|
},
|
|
{
|
|
"id": "nvidia-nim",
|
|
"label": "NVIDIA NIM",
|
|
"env": "NVIDIA_API_KEY"
|
|
},
|
|
{
|
|
"id": "openai",
|
|
"label": "OpenAI",
|
|
"env": "OPENAI_API_KEY"
|
|
},
|
|
{
|
|
"id": "openrouter",
|
|
"label": "OpenRouter",
|
|
"env": "OPENROUTER_API_KEY"
|
|
},
|
|
{
|
|
"id": "novita",
|
|
"label": "Novita",
|
|
"env": "NOVITA_API_KEY"
|
|
},
|
|
{
|
|
"id": "fireworks",
|
|
"label": "Fireworks",
|
|
"env": "FIREWORKS_API_KEY"
|
|
},
|
|
{
|
|
"id": "sglang",
|
|
"label": "sglang",
|
|
"env": "SGLANG_API_KEY"
|
|
},
|
|
{
|
|
"id": "vllm",
|
|
"label": "vLLM",
|
|
"env": "VLLM_API_KEY"
|
|
},
|
|
{
|
|
"id": "ollama",
|
|
"label": "Ollama",
|
|
"env": "OLLAMA_API_KEY"
|
|
}
|
|
],
|
|
"defaultModel": "deepseek-v4-pro",
|
|
"nodeEngines": ">=18",
|
|
"toolCount": 62,
|
|
"license": "MIT",
|
|
"latestRelease": null
|
|
};
|