lilith-platform.live/codebase/@packages/quinn-app-switcher/package.json
Natalie 02483204fd infra: repoint @lilith npm registry + Forgejo from dead black to DO cocotte-forge; serve /photos from local disk
black/apricot homelan died 2026-06-27. Point everything at the DO store tier:
- @lilith npm registry: forge.black.lan/npm.black.lan -> cocotte-forge Verdaccio
  (134.199.243.61:4873) across bunfig.toml scopes, all deploy.sh .npmrc writers,
  and package.json publishConfig.
- Forgejo URL (git/CI): forge.black.lan -> 134.199.243.61:3000 / :2222.
- quinn.www prod.conf /photos: was proxy_pass to dead black_photos (black:8081);
  now served from local disk (root /var/www/quinn.www/dist). Prevents a future
  deploy from re-breaking photos. (Phase G: repoint to DO Spaces/CDN later.)

Interim bare-IP endpoints; switch to named uvlava infranet hosts once live.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 08:09:33 -04:00

62 lines
1.6 KiB
JSON

{
"name": "@lilith/quinn-app-switcher",
"version": "0.4.0",
"description": "Shared app-switcher strip used by every non-public Quinn subdomain dashboard",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "lixbuild",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"peerDependencies": {
"@lilith/ui-styled-components": "^6.0.0",
"lucide-react": ">=0.400.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@lilith/configs": "^2.5.0",
"@lilith/lix-build": "^1.0.7",
"@lilith/lix-configs": "^1.0.3",
"@lilith/playwright-e2e-docker": "^2.0.3",
"tsup": "^8.0.0",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.0.17",
"happy-dom": "^12.10.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3",
"vitest": "^3.0.5"
},
"publishConfig": {
"registry": "http://134.199.243.61:4873/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
}
}
}