cf45efa07b
- Bump workspace.package.version 0.8.33 -> 0.8.34 across all 14 crates - Bump npm wrapper version + deepseekBinaryVersion pin - Update docs/TOOL_SURFACE.md "Current surface" + docs/ARCHITECTURE.md current-surface references; historical "removed_in"/"v0.8.33 began moving" wording stays as fact - Update web/lib/facts.generated.ts version pin - Draft [0.8.34] CHANGELOG section covering the 135 commits since 0.8.33 (prefix-cache stability, bundled skills, Kitty/Ghostty notifications, theme picker, chunked tool dispatch, MCP session-id persistence, cost-calc reasoning tokens, and the in-flight internal cleanup) - Remove stale repo-root development artifacts: * TAKEOVER_PROMPT.md (v0.8.6 handoff, 3 minors stale) * PROMPT_ANALYSIS.md (v0.8.13-era prompt audit doc) * DEPENDENCY_GRAPH.md (claimed monolith layout, predates 14-crate split) docs/ARCHITECTURE.md already contains the live crate map. - Update CONTRIBUTING.md to reference docs/ARCHITECTURE.md for build ordering instead of the removed DEPENDENCY_GRAPH.md Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "deepseek-tui",
|
|
"version": "0.8.34",
|
|
"deepseekBinaryVersion": "0.8.34",
|
|
"description": "Install and run deepseek and deepseek-tui binaries from GitHub release artifacts.",
|
|
"author": "Hmbown",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/Hmbown/DeepSeek-TUI",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Hmbown/DeepSeek-TUI.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Hmbown/DeepSeek-TUI/issues"
|
|
},
|
|
"keywords": [
|
|
"deepseek",
|
|
"cli",
|
|
"tui",
|
|
"rust",
|
|
"binary",
|
|
"terminal"
|
|
],
|
|
"type": "commonjs",
|
|
"bin": {
|
|
"deepseek": "bin/deepseek.js",
|
|
"deepseek-tui": "bin/deepseek-tui.js"
|
|
},
|
|
"scripts": {
|
|
"release:check": "node scripts/verify-release-assets.js",
|
|
"postinstall": "node scripts/install.js --optional",
|
|
"prepublishOnly": "node scripts/verify-release-assets.js",
|
|
"prepack": "node scripts/install.js",
|
|
"test": "node --test test/*.test.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"preferGlobal": true,
|
|
"files": [
|
|
"bin/*.js",
|
|
"scripts/*.js",
|
|
"test/*.js",
|
|
"README.md",
|
|
"package.json"
|
|
]
|
|
}
|