Files
codewhale/npm/deepseek-tui/package.json
T
Hunter Bown 84c55e9022 chore(release): bump version to 0.8.8
- Workspace `version = "0.8.8"` in root `Cargo.toml`.
- 31 internal `deepseek-*` path-dep version pins across the
  9 crates that declare them.
- `npm/deepseek-tui/package.json` `version` and
  `deepseekBinaryVersion` both updated.
- `Cargo.lock` regenerated for the new workspace version.
- `CHANGELOG.md` `[Unreleased]` heading promoted to
  `[0.8.8] - 2026-05-03`.

`scripts/release/check-versions.sh` reports the workspace, npm
wrapper, and lockfile all aligned. Pushing this to `main` should
fire `auto-tag.yml`, which creates the `v0.8.8` tag with
`RELEASE_TAG_PAT`. The tag triggers `release.yml` to build the
matrix and draft the GitHub Release. The npm wrapper publish
remains manual (npm 2FA OTP requirement).

What ships in v0.8.8
====================

The full polish stack already merged via PRs #514 (stabilization),
#515 (OSC 8 hyperlinks), #517 (inline diff render), #518 (user
memory MVP), #519 (foreground polish + per-project overlay +
security + Windows redraw fix), and #508 (Linux ARM64 prebuilts +
install docs). See `CHANGELOG.md` and the README "What's new in
v0.8.8" section for the full list.
2026-05-03 08:55:41 -05:00

49 lines
1.1 KiB
JSON

{
"name": "deepseek-tui",
"version": "0.8.8",
"deepseekBinaryVersion": "0.8.8",
"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"
]
}