Files
codewhale/npm/deepseek-tui/package.json
T
Hunter Bown 593ed2f900 fix(npm): preserve -v passthrough
Summary:
- Stop treating -v as an npm wrapper version fallback.
- Keep wrapper fallback for --version and -V.
- Add a Node regression test for wrapper version flag detection.

Test plan:
- npm test from npm/deepseek-tui
- git diff --check origin/main...HEAD

Supersedes #959.
2026-05-07 03:37:22 -05:00

51 lines
1.1 KiB
JSON

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