- Update all package.json publishConfig to use forge.nasty.sh - Remove GitLab CI configuration - Set git remote to forge.nasty.sh/lilith/queue 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
82 lines
2.1 KiB
JSON
82 lines
2.1 KiB
JSON
{
|
|
"name": "@lilith/queue-ml",
|
|
"version": "1.0.0",
|
|
"description": "ML-specific job queue extensions with batching strategies and timeout handling",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./strategies": {
|
|
"types": "./dist/strategies/index.d.ts",
|
|
"require": "./dist/strategies/index.js",
|
|
"import": "./dist/strategies/index.js"
|
|
},
|
|
"./processors": {
|
|
"types": "./dist/processors/index.d.ts",
|
|
"require": "./dist/processors/index.js",
|
|
"import": "./dist/processors/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"lint": "eslint src --fix",
|
|
"lint:check": "eslint src",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest",
|
|
"test:watch": "vitest --watch",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"keywords": [
|
|
"queue",
|
|
"bullmq",
|
|
"ml",
|
|
"machine-learning",
|
|
"batching",
|
|
"inference"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@lilith/queue-core": "workspace:*",
|
|
"@lilith/queue-nestjs": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/bullmq": "^10.0.0",
|
|
"@nestjs/common": "^10.0.0",
|
|
"bullmq": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/bullmq": "^10.0.0",
|
|
"@nestjs/common": "^10.0.0",
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"bullmq": "^5.0.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-import": "^2.29.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"prettier": "^3.0.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.0.16",
|
|
"@lilith/configs": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://forge.nasty.sh/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|