queue/reporting/package.json
Lilith 23d7871f5f chore: migrate from GitLab to Forgejo
- 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>
2025-12-30 19:09:02 -08:00

70 lines
1.6 KiB
JSON

{
"name": "@lilith/queue-reporting",
"version": "1.0.0",
"description": "Job lifecycle database persistence using TypeORM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/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",
"reporting",
"typeorm",
"database",
"persistence",
"analytics"
],
"author": "",
"license": "MIT",
"dependencies": {
"@lilith/queue-core": "workspace:*",
"typeorm": "^0.3.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/typeorm": "^10.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/typeorm": "^10.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.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.14",
"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
}
}