feat: add Verdaccio local npm registry for development
Summary
Adds Verdaccio as a local npm registry proxy for development, enabling local npm package testing without publishing to GitLab.
Changes
- Added
verdaccioservice tocompose.override.yml - Added
verdaccio/config.yamlwith configuration for local development
Usage
# Start Verdaccio
docker compose up -d verdaccio
# First time setup (create local user)
npm adduser --registry http://localhost:4873
# Publish a local package
cd ../ai-delegate
npm publish --registry http://localhost:4873
# Rebuild UI (will fetch from Verdaccio if package exists there)
docker compose build ui
Web UI
Access at http://localhost:4873
Related
- Closes #1 (closed)
- Related to ai-delegate#4 (closed) (postbuild auto-publish script)