mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-01 22:10:23 +00:00
Optimize package management with catalog and exact versions
- Add catalog feature to centralize common dependency versions
- Convert all package versions to exact (remove ^ prefixes)
- Move prettier to root package only to reduce duplication
- Configure bunfig.toml for exact dependency installs
- Improve version consistency across workspace packages
🤖 Generated with opencode
Co-Authored-By: opencode <noreply@opencode.ai>
This commit is contained in:
parent
56a5d58945
commit
1472efcbfe
6 changed files with 53 additions and 67 deletions
10
package.json
10
package.json
|
|
@ -12,8 +12,8 @@
|
|||
],
|
||||
"devDependencies": {
|
||||
"@tsconfig/node22": "22.0.0",
|
||||
"@types/node": "^22.13.9",
|
||||
"prettier": "^3.5.3",
|
||||
"@types/node": "22.13.9",
|
||||
"prettier": "3.5.3",
|
||||
"sst": "3.16.0",
|
||||
"typescript": "5.8.2"
|
||||
},
|
||||
|
|
@ -32,6 +32,12 @@
|
|||
"overrides": {
|
||||
"zod": "3.24.2"
|
||||
},
|
||||
"catalog": {
|
||||
"typescript": "5.8.2",
|
||||
"@types/node": "22.13.9",
|
||||
"zod": "3.24.2",
|
||||
"ai": "5.0.0-alpha.7"
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"esbuild",
|
||||
"protobufjs",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue