@hermenics/deepseek-code 0.4.12 → 0.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/cli.mjs +291 -291
- package/dist/deepseek +14 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
## Quick start
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
|
|
43
|
+
bun add -g @hermenics/deepseek-code
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
Then run `deepseek` inside any project. On first run you'll pick a **provider** and configure authentication.
|
|
@@ -54,7 +54,7 @@ cat src/index.tsx | deepseek --pipe --json "summarize"
|
|
|
54
54
|
|
|
55
55
|
### Requirements
|
|
56
56
|
|
|
57
|
-
-
|
|
57
|
+
- [Bun](https://bun.sh) 1.1+
|
|
58
58
|
- A supported LLM provider (see below)
|
|
59
59
|
|
|
60
60
|
## Providers & authentication
|
|
@@ -66,7 +66,7 @@ cat src/index.tsx | deepseek --pipe --json "summarize"
|
|
|
66
66
|
| **Google Vertex AI** | GCP service account JSON key | `GCP_PROJECT`, `GCP_LOCATION`, `GCP_CREDENTIALS` |
|
|
67
67
|
| **Local (Ollama / LM Studio)** | No auth — point to your local endpoint | `LOCAL_BASE_URL`, `LOCAL_MODEL` |
|
|
68
68
|
|
|
69
|
-
Secrets are saved only to `~/.deepseek/config.json`. Non-secret preferences use `settings.json` with `User < Project < Local` precedence; legacy values remain readable for compatibility. See [docs/settings.md](docs/settings.md).
|
|
69
|
+
Secrets are saved only to `~/.deepseek/config.json`. Non-secret preferences use `settings.json` with `User < Project < Local` precedence; legacy values remain readable for compatibility. Project MCP servers are off by default and require the User-scoped **Enable project MCP servers** setting; restart DeepSeek Code after changing it. See [docs/settings.md](docs/settings.md).
|
|
70
70
|
|
|
71
71
|
## Models
|
|
72
72
|
|