Browse Source

chore: align tooling with dependency upgrades (#136)

Muen Yu 1 month ago
parent
commit
630c3ec50f
4 changed files with 31 additions and 29 deletions
  1. 1 1
      biome.json
  2. 23 21
      bun.lock
  3. 6 6
      package.json
  4. 1 1
      src/cli/install.ts

+ 1 - 1
biome.json

@@ -1,5 +1,5 @@
 {
-  "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
+  "$schema": "https://biomejs.dev/schemas/2.4.2/schema.json",
   "assist": { "actions": { "source": { "organizeImports": "on" } } },
   "vcs": {
     "enabled": true,

File diff suppressed because it is too large
+ 23 - 21
bun.lock


+ 6 - 6
package.json

@@ -50,16 +50,16 @@
   },
   "dependencies": {
     "@ast-grep/cli": "^0.40.0",
-    "@modelcontextprotocol/sdk": "^1.25.1",
-    "@opencode-ai/plugin": "^1.1.19",
-    "@opencode-ai/sdk": "^1.1.19",
+    "@modelcontextprotocol/sdk": "^1.26.0",
+    "@opencode-ai/plugin": "^1.2.6",
+    "@opencode-ai/sdk": "^1.2.6",
     "vscode-jsonrpc": "^8.2.0",
     "vscode-languageserver-protocol": "^3.17.5",
-    "zod": "^4.1.8"
+    "zod": "^4.3.6"
   },
   "devDependencies": {
-    "@biomejs/biome": "2.3.11",
-    "bun-types": "latest",
+    "@biomejs/biome": "2.4.2",
+    "bun-types": "1.3.9",
     "typescript": "^5.9.3"
   },
   "trustedDependencies": [

+ 1 - 1
src/cli/install.ts

@@ -1340,7 +1340,7 @@ async function runInstall(config: InstallConfig): Promise<number> {
   if (resolvedConfig.dryRun) {
     const liteConfig = generateLiteConfig(resolvedConfig);
     printInfo('Dry run mode - configuration that would be written:');
-    console.log('\n' + JSON.stringify(liteConfig, null, 2) + '\n');
+    console.log(`\n${JSON.stringify(liteConfig, null, 2)}\n`);
   } else {
     const liteResult = writeLiteConfig(resolvedConfig);
     if (!handleStepResult(liteResult, 'Config written')) return 1;