mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 19:24:22 +01:00
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"
|
|
}
|
|
}
|