2025-12-28 04:32:35 -08:00
|
|
|
{
|
2025-12-31 01:32:00 -08:00
|
|
|
"name": "@lilith/ml-model-loader",
|
2026-01-03 00:42:24 -08:00
|
|
|
"version": "2.0.3",
|
2025-12-28 04:32:35 -08:00
|
|
|
"description": "Shared model loader with remote rsync/scp support and manifest registry",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "./dist/src/index.js",
|
|
|
|
|
"types": "./dist/src/index.d.ts",
|
|
|
|
|
"bin": {
|
|
|
|
|
"model-loader": "./dist/bin/model-loader.js"
|
|
|
|
|
},
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/src/index.d.ts",
|
|
|
|
|
"import": "./dist/src/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2025-12-29 21:39:33 -08:00
|
|
|
"prepare": "git config core.hooksPath .githooks",
|
2025-12-28 04:32:35 -08:00
|
|
|
"build": "tsc",
|
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"clean": "rm -rf dist",
|
2026-01-01 16:01:20 -08:00
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
|
|
|
|
"test:coverage": "vitest run --coverage",
|
2025-12-31 01:32:00 -08:00
|
|
|
"prepublishOnly": "npm run build"
|
2025-12-28 04:32:35 -08:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"python"
|
|
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"model-loader",
|
|
|
|
|
"ml",
|
|
|
|
|
"machine-learning",
|
|
|
|
|
"cache",
|
|
|
|
|
"rsync"
|
|
|
|
|
],
|
|
|
|
|
"author": "Lilith Platform",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"commander": "^12.1.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-01 16:01:20 -08:00
|
|
|
"@lilith/configs": "workspace:*",
|
2025-12-28 04:32:35 -08:00
|
|
|
"@types/node": "^22.0.0",
|
2026-01-01 16:01:20 -08:00
|
|
|
"@vitest/coverage-v8": "^4.0.16",
|
2025-12-31 01:32:00 -08:00
|
|
|
"typescript": "^5.7.0",
|
2026-01-01 16:01:20 -08:00
|
|
|
"vitest": "^4.0.16"
|
2025-12-28 04:32:35 -08:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0"
|
2025-12-29 21:39:33 -08:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
2025-12-31 01:32:00 -08:00
|
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
|
2025-12-29 21:39:33 -08:00
|
|
|
},
|
|
|
|
|
"_": {
|
2025-12-31 01:32:00 -08:00
|
|
|
"registry": "forgejo",
|
2025-12-29 21:39:33 -08:00
|
|
|
"publish": true,
|
|
|
|
|
"build": true
|
2025-12-28 04:32:35 -08:00
|
|
|
}
|
|
|
|
|
}
|