ml-model-loader/package.json

62 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2025-12-28 04:32:35 -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": {
"prepare": "git config core.hooksPath .githooks",
2025-12-28 04:32:35 -08:00
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"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": {
"@lilith/configs": "workspace:*",
2025-12-28 04:32:35 -08:00
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.16",
"typescript": "^5.7.0",
"vitest": "^4.0.16"
2025-12-28 04:32:35 -08:00
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
2025-12-28 04:32:35 -08:00
}
}