mirror of
https://github.com/anomalyco/opencode.git
synced 2026-06-02 06:16:48 +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.
20 lines
385 B
JSON
20 lines
385 B
JSON
{
|
|
"name": "github",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/bun": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.11.1",
|
|
"@actions/github": "6.0.1",
|
|
"@octokit/graphql": "9.0.1",
|
|
"@octokit/rest": "22.0.0",
|
|
"@opencode-ai/sdk": "workspace:*"
|
|
}
|
|
}
|