@@ -307,7 +307,7 @@ interface LocalRepoPath {
307307## Commands
308308
309309``` bash
310- npm i -D @ryanatkn /fuz_gitops
310+ npm i -D @fuzdev /fuz_gitops
311311
312312# Data management
313313gro gitops_sync # sync repos and update local data
@@ -369,9 +369,9 @@ gro test src/test/fixtures/check # validate gitops commands against fixture
369369## Dependencies
370370
371371- ` @ryanatkn/gro ` - build tool and task runner
372- - ` @ryanatkn/fuz ` - UI components and utilities
373- - ` @ryanatkn/belt ` - utility functions
374- - ` @ryanatkn/moss ` - CSS framework and design tokens
372+ - ` @fuzdev/fuz_ui ` - UI components and utilities
373+ - ` @fuzdev/fuz_util ` - utility functions
374+ - ` @fuzdev/fuz_css ` - CSS framework and design tokens
375375- ` @sveltejs/kit ` - web framework
376376- ` svelte ` - UI framework
377377- ` zod ` - schema validation
@@ -393,7 +393,7 @@ For packages you control, use `>=` instead of `^` for peer dependencies:
393393
394394``` json
395395"peerDependencies" : {
396- "@ryanatkn/belt " : " >=0.38.0" , // controlled package - use >=
396+ "@fuzdev/fuz_util " : " >=0.38.0" , // controlled package - use >=
397397 "@ryanatkn/gro" : " >=0.174.0" , // controlled package - use >=
398398 "@sveltejs/kit" : " ^2" , // third-party - use ^
399399 "svelte" : " ^5" // third-party - use ^
@@ -404,7 +404,7 @@ For packages you control, use `>=` instead of `^` for peer dependencies:
404404
405405- Eliminates npm peer dependency resolution conflicts when publishing sequentially
406406- ` ^0.37.0 ` means ` >=0.37.0 <0.38.0 ` in 0.x semver (excludes next minor)
407- - When you publish ` moss@0.38.0 ` , packages with ` "@ryanatkn/moss ": "^0.37.0" `
407+ - When you publish ` moss@0.38.0 ` , packages with ` "@fuzdev/fuz_css ": "^0.37.0" `
408408 conflict
409409- ` >=0.37.0 ` allows any version ` >=0.37.0 ` , including ` 0.38.0 ` and beyond
410410- No need for ` --legacy-peer-deps ` flag
0 commit comments