feat(simulation): add driver controlled backend LLM (#35186)

This commit is contained in:
James Long
2026-07-03 14:19:25 -04:00
committed by GitHub
parent 2ff19171dc
commit 4790a2772c
25 changed files with 1191 additions and 21 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/simulation",
"version": "1.17.13",
"private": true,
"type": "module",
"license": "MIT",
"exports": {
"./backend": "./src/backend/index.ts",
"./backend/*": "./src/backend/*.ts",
"./frontend": "./src/frontend/simulation.ts",
"./frontend/*": "./src/frontend/*.ts"
},
"scripts": {
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@opencode-ai/core": "workspace:*",
"@opencode-ai/llm": "workspace:*",
"@opentui/core": "catalog:",
"effect": "catalog:"
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@typescript/native-preview": "catalog:"
}
}