ml-model-loader/package.json

56 lines
1.2 KiB
JSON

{
"name": "@transquinnftw/model-loader",
"version": "1.0.0",
"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",
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"publish": "pnpm publish --no-git-checks"
},
"files": [
"dist",
"python"
],
"keywords": [
"model-loader",
"ml",
"machine-learning",
"cache",
"rsync"
],
"author": "Lilith Platform",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"@transquinnftw:registry": "https://gitlab.com/api/v4/packages/npm/"
},
"_": {
"registry": "gitlab",
"publish": true,
"build": true
}
}