53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "@lilith/ml-agent-loader",
|
|
"version": "0.1.8",
|
|
"description": "Reusable package for loading YAML-based agent definitions",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"prepare": "git config core.hooksPath .githooks",
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"keywords": [
|
|
"agent",
|
|
"yaml",
|
|
"ml",
|
|
"loader",
|
|
"config"
|
|
],
|
|
"author": "transquinnftw",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"yaml": "^2.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"typescript": "^5.7.2",
|
|
"@lilith/configs": "workspace:*"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://forge.nasty.sh/lilith/ml-agent-loader.git"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|