This commit is contained in:
Dax Raad
2025-10-14 18:30:32 -04:00
parent ea926f0e1a
commit 62e5f4b154
11 changed files with 50 additions and 17 deletions

View File

@@ -2,7 +2,7 @@
"name": "@opencode-ai/console-app",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck": "tsgo --noEmit",
"dev": "vinxi dev --host 0.0.0.0",
"dev:remote": "VITE_AUTH_URL=https://auth.dev.opencode.ai bun sst shell --stage=dev bun dev",
"build": "vinxi build && ../../opencode/script/schema.ts ./.output/public/config.json",
@@ -23,7 +23,8 @@
"zod": "catalog:"
},
"devDependencies": {
"typescript": "catalog:"
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
},
"engines": {
"node": ">=22"

View File

@@ -27,7 +27,7 @@
"update-models": "script/update-models.ts",
"promote-models-to-dev": "script/promote-models.ts dev",
"promote-models-to-prod": "script/promote-models.ts production",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "catalog:",
@@ -36,6 +36,7 @@
"@types/node": "catalog:",
"drizzle-kit": "0.30.5",
"mysql2": "3.14.4",
"typescript": "catalog:"
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
}
}

View File

@@ -5,14 +5,15 @@
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "catalog:",
"@tsconfig/node22": "22.0.2",
"@types/node": "catalog:",
"openai": "5.11.0",
"typescript": "catalog:"
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
},
"dependencies": {
"@ai-sdk/anthropic": "2.0.0",

View File

@@ -8,7 +8,7 @@
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit"
},
"license": "MIT",
"devDependencies": {
@@ -17,6 +17,7 @@
"@types/luxon": "3.7.1",
"@types/node": "catalog:",
"typescript": "catalog:",
"@typescript/native-preview": "catalog:",
"vite": "catalog:",
"vite-plugin-icons-spritesheet": "3.0.1",
"vite-plugin-solid": "catalog:"

View File

@@ -5,7 +5,7 @@
"type": "module",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck": "tsgo --noEmit",
"test": "bun test",
"build": "./script/build.ts",
"dev": "bun run ./src/index.ts"
@@ -27,6 +27,7 @@
"@types/turndown": "5.0.5",
"@types/yargs": "17.0.33",
"typescript": "catalog:",
"@typescript/native-preview": "catalog:",
"vscode-languageserver-types": "3.17.5",
"zod-to-json-schema": "3.24.5",
"@opencode-ai/script": "workspace:*"

View File

@@ -8,7 +8,6 @@
"types": [],
"noUncheckedIndexedAccess": false,
"customConditions": ["browser"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@tui/*": ["./src/cli/cmd/tui/*"]

View File

@@ -4,7 +4,7 @@
"version": "0.15.3",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck": "tsgo --noEmit",
"build": "tsc"
},
"exports": {
@@ -21,6 +21,7 @@
"devDependencies": {
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:"
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
}
}
}

View File

@@ -4,7 +4,7 @@
"version": "0.15.3",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck": "tsgo --noEmit",
"build": "./script/build.ts"
},
"exports": {
@@ -19,10 +19,11 @@
"@hey-api/openapi-ts": "0.81.0",
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:"
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
},
"dependencies": {},
"publishConfig": {
"directory": "dist"
}
}
}

View File

@@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"dev": "bun run src/index.ts",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@opencode-ai/sdk": "workspace:*",
@@ -12,6 +12,7 @@
},
"devDependencies": {
"@types/node": "catalog:",
"typescript": "catalog:"
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
}
}