lilith-platform.live/codebase/@packages/@lilith/tour-optimizer/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

40 lines
1 KiB
JSON

{
"name": "@lilith/tour-optimizer",
"version": "0.1.0",
"description": "Prize-collecting tour-route optimiser. Wraps listOpportunityRanked output + a haversine travel-cost model in a greedy + 2-opt orienteering solver. Six strategy presets cover create / edit / expansion modes.",
"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": "bun test"
},
"devDependencies": {
"@lilith/lix-build": "^1.0.7",
"@lilith/lix-configs": "^1.0.3",
"@types/bun": "^1.2.0",
"tsup": "^8.0.0",
"typescript": "^5.9.3"
},
"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"
}
}
}
}