Task
Audit ALL OpenSIN repos for any remaining npm/bunx usage.
Check
grep -r "npm \|npm install\|npm run\|npx \|bunx" . --include="*.md" --include="*.json" | grep -v node_modules
Repos to check
- OpenSIN-Code (primary)
- OpenSIN-overview
- OpenSIN
- OpenSIN-documentation
If found
Replace with bun equivalents:
- npm install → bun install
- npm run build → bun run build
- npx → bunx (except wrangler)
- package-lock.json → delete (bun.lockb exists)
Validation
Zero npm/npx/bunx in any repo documentation or configs
Linked Epic
Epic #1089
Task
Audit ALL OpenSIN repos for any remaining npm/bunx usage.
Check
grep -r "npm \|npm install\|npm run\|npx \|bunx" . --include="*.md" --include="*.json" | grep -v node_modulesRepos to check
If found
Replace with bun equivalents:
Validation
Zero npm/npx/bunx in any repo documentation or configs
Linked Epic
Epic #1089