dsh-llm-codebuddy 1.3.4 → 1.3.6

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-llm-codebuddy",
3
- "version": "1.3.4",
4
- "description": "使用 WorkBuddy API Key DeepSeek Harness 接入 CodeBuddy 模型",
3
+ "version": "1.3.6",
4
+ "description": "通过 WorkBuddy API Key CodeBuddy 登录令牌为 DeepSeek Harness 接入 CodeBuddy 模型",
5
5
  "author": "Axiaohungry",
6
6
  "keywords": [
7
7
  "deepseek-harness",
@@ -14,7 +14,9 @@
14
14
  "type": "module",
15
15
  "main": "index.js",
16
16
  "exports": {
17
- ".": "./index.js"
17
+ ".": "./index.js",
18
+ "./client": "./client.js",
19
+ "./package.json": "./package.json"
18
20
  },
19
21
  "bin": {
20
22
  "dsh-llm-codebuddy": "cli.js"
@@ -29,6 +31,10 @@
29
31
  },
30
32
  "files": [
31
33
  "index.js",
34
+ "codebuddy-auth.js",
35
+ "codebuddy-credits.js",
36
+ "codebuddy-web.js",
37
+ "client.js",
32
38
  "cli.js",
33
39
  "cordis.patch.yml",
34
40
  "docs",
@@ -36,9 +42,13 @@
36
42
  "LICENSE"
37
43
  ],
38
44
  "scripts": {
39
- "check": "node --check index.js && node --check cli.js && node --test test.js && node cli.js --self-test"
45
+ "check": "node --check index.js && node --check codebuddy-auth.js && node --check codebuddy-credits.js && node --check codebuddy-web.js && node --check client.js && node --check cli.js && node --test test.js && node cli.js --self-test"
40
46
  },
41
47
  "dsh": {
48
+ "client": {
49
+ "inject": [],
50
+ "platform": "web"
51
+ },
42
52
  "bundle": {
43
53
  "patch": "./cordis.patch.yml"
44
54
  }