fix: package dependency && issue traige

This commit is contained in:
koalazf.99
2025-08-04 16:20:24 +08:00
parent 54e41e3b31
commit f1328b8437
5 changed files with 8 additions and 8 deletions

View File

@@ -44,6 +44,8 @@ jobs:
with: with:
version: 0.0.4 version: 0.0.4
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}
OPENAI_MODEL: ${{ secrets.OPENAI_MODEL }}
settings_json: | settings_json: |
{ {
"coreTools": [ "coreTools": [

5
package-lock.json generated
View File

@@ -10,9 +10,6 @@
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],
"dependencies": {
"tiktoken": "^1.0.21"
},
"bin": { "bin": {
"qwen": "bundle/gemini.js" "qwen": "bundle/gemini.js"
}, },
@@ -11797,6 +11794,7 @@
"string-width": "^7.1.0", "string-width": "^7.1.0",
"strip-ansi": "^7.1.0", "strip-ansi": "^7.1.0",
"strip-json-comments": "^3.1.1", "strip-json-comments": "^3.1.1",
"tiktoken": "^1.0.21",
"update-notifier": "^7.3.1", "update-notifier": "^7.3.1",
"yargs": "^17.7.2", "yargs": "^17.7.2",
"zod": "^3.23.8" "zod": "^3.23.8"
@@ -11872,6 +11870,7 @@
"shell-quote": "^1.8.3", "shell-quote": "^1.8.3",
"simple-git": "^3.28.0", "simple-git": "^3.28.0",
"strip-ansi": "^7.1.0", "strip-ansi": "^7.1.0",
"tiktoken": "^1.0.21",
"undici": "^7.10.0", "undici": "^7.10.0",
"ws": "^8.18.0" "ws": "^8.18.0"
}, },

View File

@@ -84,8 +84,5 @@
"typescript-eslint": "^8.30.1", "typescript-eslint": "^8.30.1",
"vitest": "^3.2.4", "vitest": "^3.2.4",
"yargs": "^17.7.2" "yargs": "^17.7.2"
},
"dependencies": {
"tiktoken": "^1.0.21"
} }
} }

View File

@@ -54,7 +54,8 @@
"strip-json-comments": "^3.1.1", "strip-json-comments": "^3.1.1",
"update-notifier": "^7.3.1", "update-notifier": "^7.3.1",
"yargs": "^17.7.2", "yargs": "^17.7.2",
"zod": "^3.23.8" "zod": "^3.23.8",
"tiktoken": "^1.0.21"
}, },
"devDependencies": { "devDependencies": {
"@babel/runtime": "^7.27.6", "@babel/runtime": "^7.27.6",

View File

@@ -45,7 +45,8 @@
"simple-git": "^3.28.0", "simple-git": "^3.28.0",
"strip-ansi": "^7.1.0", "strip-ansi": "^7.1.0",
"undici": "^7.10.0", "undici": "^7.10.0",
"ws": "^8.18.0" "ws": "^8.18.0",
"tiktoken": "^1.0.21"
}, },
"devDependencies": { "devDependencies": {
"@types/diff": "^7.0.2", "@types/diff": "^7.0.2",