qmd-autosearch 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.
Files changed (2) hide show
  1. package/cordis.patch.yml +5 -0
  2. package/package.json +13 -2
@@ -0,0 +1,5 @@
1
+ # qmd-autosearch — bundle patch applied by `dsh plugin add qmd-autosearch`
2
+ # 参照 awesome-dsh-plugin contributing.md 的 dsh.bundle 格式
3
+ - insert:
4
+ - id: qmd-autosearch
5
+ name: qmd-autosearch
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qmd-autosearch",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "description": "DSH plugin: auto-supplement QMD semantic search when the model greps/globs a knowledge-base directory",
@@ -15,11 +15,22 @@
15
15
  ],
16
16
  "files": [
17
17
  "index.js",
18
+ "cordis.patch.yml",
18
19
  "README.md",
19
20
  "LICENSE"
20
21
  ],
22
+ "dsh": {
23
+ "bundle": {
24
+ "patch": "./cordis.patch.yml"
25
+ }
26
+ },
21
27
  "engines": {
22
28
  "node": ">=18"
23
29
  },
24
- "license": "MIT"
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/zhangzhenwen1/qmd-autosearch.git"
34
+ },
35
+ "homepage": "https://github.com/zhangzhenwen1/qmd-autosearch"
25
36
  }