diff options
| author | Dax Raad <[email protected]> | 2025-05-30 21:56:37 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-30 21:56:37 -0400 |
| commit | 1472efcbfe74105976c3f9234c6dd098402a13ad (patch) | |
| tree | 161ed81506428253b2a40caf105e40ef41719db2 /packages/web | |
| parent | 56a5d589454e029c691cbcd1ce6df517fd5603d2 (diff) | |
| download | opencode-1472efcbfe74105976c3f9234c6dd098402a13ad.tar.gz opencode-1472efcbfe74105976c3f9234c6dd098402a13ad.zip | |
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 <[email protected]>
Diffstat (limited to 'packages/web')
| -rw-r--r-- | packages/web/package.json | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/packages/web/package.json b/packages/web/package.json index 33b3dc4d2..802f1100b 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -10,20 +10,24 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdown-remark": "^6.3.1", - "@astrojs/solid-js": "^5.1.0", - "@astrojs/starlight": "^0.34.3", - "@fontsource/ibm-plex-mono": "^5.2.5", - "@shikijs/transformers": "^3.4.2", - "@types/luxon": "^3.6.2", - "ai": "^5.0.0-alpha.2", - "astro": "^5.7.13", - "diff": "^8.0.2", - "luxon": "^3.6.1", - "rehype-autolink-headings": "^7.1.0", - "sharp": "^0.32.5", - "shiki": "^3.4.2", - "solid-js": "^1.9.7", - "toolbeam-docs-theme": "^0.2.4" + "@astrojs/markdown-remark": "6.3.1", + "@astrojs/solid-js": "5.1.0", + "@astrojs/starlight": "0.34.3", + "@fontsource/ibm-plex-mono": "5.2.5", + "@shikijs/transformers": "3.4.2", + "@types/luxon": "3.6.2", + "ai": "catalog:", + "astro": "5.7.13", + "diff": "8.0.2", + "luxon": "3.6.1", + "rehype-autolink-headings": "7.1.0", + "sharp": "0.32.5", + "shiki": "3.4.2", + "solid-js": "1.9.7", + "toolbeam-docs-theme": "0.2.4" + }, + "devDependencies": { + "typescript": "catalog:", + "@types/node": "catalog:" } } |
