@deepsweet/mdn 0.1.0 → 0.1.1

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 CHANGED
@@ -22,7 +22,7 @@ See [dataset repo](https://huggingface.co/datasets/deepsweet/mdn) on HuggigFace
22
22
  ### 1. Download dataset and embedding model
23
23
 
24
24
  ```sh
25
- npx @deepsweet/mdn@latest download
25
+ npx @deepsweet/mdn download
26
26
  ```
27
27
 
28
28
  Both [dataset](https://huggingface.co/datasets/deepsweet/mdn) (\~260 MB) and the [embedding model GGUF file](https://huggingface.co/deepsweet/bge-m3-GGUF-Q4_K_M) (\~438 MB) will be downloaded directly from HugginFace and stored in its default cache location (typically `~/.cache/huggingface/`), just like the `hf download` command does.
package/dist/index.js CHANGED
@@ -131,7 +131,7 @@ var createReranker = async () => {
131
131
 
132
132
  // package.json
133
133
  var name = "@deepsweet/mdn";
134
- var version = "0.1.0";
134
+ var version = "0.1.1";
135
135
 
136
136
  // src/server.ts
137
137
  var startMcpServer = async () => {
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "@deepsweet/mdn",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "type": "module",
8
- "bin": "dist/index.js",
8
+ "bin": {
9
+ "mdn": "dist/index.js"
10
+ },
9
11
  "main": "dist/index.js",
10
12
  "files": [
11
13
  "dist/"