mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-03 14:15:19 +02:00
e5e05d390d
This eliminates duplicate package versions that were causing build issues and inconsistent behavior across the monorepo. Dependencies now resolve to single versions through the workspace catalog, making installs faster and more reliable.
19 lines
384 B
JSON
19 lines
384 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@opencode-ai/console-resource",
|
|
"dependencies": {
|
|
"@cloudflare/workers-types": "catalog:"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"production": {
|
|
"import": "./resource.cloudflare.ts"
|
|
},
|
|
"import": "./resource.node.ts"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node22": "22.0.2"
|
|
}
|
|
}
|