- 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>
126 lines
3.3 KiB
JSON
126 lines
3.3 KiB
JSON
{
|
|
"name": "@lilith/queue-admin",
|
|
"version": "1.0.2",
|
|
"description": "Queue administration: React frontend + NestJS backend with WebSocket real-time updates",
|
|
"type": "module",
|
|
"exports": {
|
|
"./backend": {
|
|
"types": "./backend/dist/index.d.ts",
|
|
"import": "./backend/dist/index.js",
|
|
"require": "./backend/dist/index.js"
|
|
},
|
|
"./backend/gateway": {
|
|
"types": "./backend/dist/gateway/index.d.ts",
|
|
"import": "./backend/dist/gateway/index.js",
|
|
"require": "./backend/dist/gateway/index.js"
|
|
},
|
|
"./frontend": {
|
|
"types": "./frontend/dist/index.d.ts",
|
|
"import": "./frontend/dist/index.js",
|
|
"require": "./frontend/dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"backend/dist",
|
|
"frontend/dist"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run build:backend && pnpm run build:frontend",
|
|
"build:backend": "tsc -p backend/tsconfig.json",
|
|
"build:frontend": "tsc -p frontend/tsconfig.json",
|
|
"dev": "pnpm run dev:backend & pnpm run dev:frontend",
|
|
"dev:backend": "tsc -p backend/tsconfig.json --watch",
|
|
"dev:frontend": "tsc -p frontend/tsconfig.json --watch",
|
|
"clean": "rm -rf backend/dist frontend/dist",
|
|
"typecheck": "tsc -p backend/tsconfig.json --noEmit && tsc -p frontend/tsconfig.json --noEmit",
|
|
"test": "vitest",
|
|
"test:watch": "vitest --watch",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"keywords": [
|
|
"queue",
|
|
"bullmq",
|
|
"admin",
|
|
"dashboard",
|
|
"websocket",
|
|
"nestjs",
|
|
"react",
|
|
"monitoring"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@lilith/queue-core": "workspace:*",
|
|
"@lilith/queue-nestjs": "workspace:*",
|
|
"@tanstack/react-query": "^5.59.0",
|
|
"bullmq": "^5.0.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/core": "^10.0.0",
|
|
"@nestjs/platform-socket.io": "^10.0.0",
|
|
"@nestjs/websockets": "^10.0.0",
|
|
"react": "^18.0.0",
|
|
"socket.io": "^4.0.0",
|
|
"socket.io-client": "^4.7.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@nestjs/common": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/core": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/platform-socket.io": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/websockets": {
|
|
"optional": true
|
|
},
|
|
"socket.io": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"socket.io-client": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "workspace:*",
|
|
"@nestjs/common": "^10.4.20",
|
|
"@nestjs/core": "^10.4.20",
|
|
"@nestjs/platform-socket.io": "^10.4.20",
|
|
"@nestjs/schedule": "^4.1.2",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"@nestjs/websockets": "^10.4.20",
|
|
"@tanstack/react-query": "^5.59.0",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^18.3.0",
|
|
"@vitest/coverage-v8": "^4.0.16",
|
|
"happy-dom": "^12.0.0",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.1",
|
|
"reflect-metadata": "^0.1.14",
|
|
"socket.io": "^4.8.3",
|
|
"socket.io-client": "^4.7.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.0.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://forge.nasty.sh/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|