lilith-platform.live/codebase/@packages/@lilith/tour-optimizer/package.json

41 lines
1 KiB
JSON
Raw Permalink Normal View History

{
"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://forge.black.lan/api/packages/lilith/npm/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
}
}
}