a92c449de5
Picks up the v0.8.10 patch release contents: * Daemon API quartet for whalescale-desktop integration (#561-#564, PR #567). * Bug cluster: macOS seatbelt cargo registry (#558), MCP SIGTERM shutdown (#420), Linux PR_SET_PDEATHSIG (#421). * npm install on older glibc fix (#555/#560 via #556 + #565). * Shell cwd workspace-boundary validation (#524). * Memory help/docs polish (#497 via #569). * Onboarding language picker (#566). * Whale nicknames interleaved with Simplified Chinese. First-time contributors credited in CHANGELOG: @staryxchen, @shentoumengxin, @Vishnu1837, @20bytes. Workspace `Cargo.toml`, all 9 internal path-dep version pins, and `npm/deepseek-tui/package.json` all bumped to 0.8.10. `Cargo.lock` regenerated and committed alongside. Verified locally: * cargo fmt --all -- --check * cargo clippy --workspace --all-targets --all-features --locked -- -D warnings * cargo test --workspace --all-features --locked * bash scripts/release/check-versions.sh Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "deepseek-tui",
|
|
"version": "0.8.10",
|
|
"deepseekBinaryVersion": "0.8.10",
|
|
"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",
|
|
"prepublishOnly": "node scripts/verify-release-assets.js",
|
|
"prepack": "node scripts/install.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"preferGlobal": true,
|
|
"files": [
|
|
"bin/*.js",
|
|
"scripts/*.js",
|
|
"README.md",
|
|
"package.json"
|
|
]
|
|
}
|