websocket/server/package.json

68 lines
1.5 KiB
JSON
Raw Permalink Normal View History

{
"name": "@lilith/websocket-server",
"version": "1.0.0",
"description": "NestJS WebSocket gateway base classes and utilities",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest",
"clean": "rm -rf dist",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"keywords": [
"websocket",
"socket.io",
"nestjs",
"gateway",
"real-time"
],
"author": "Lilith Platform",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"dependencies": {
"@lilith/websocket-core": "workspace:*"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/websockets": "^10.0.0 || ^11.0.0",
"socket.io": "^4.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@nestjs/common": "^11.1.11",
"@nestjs/testing": "^11.1.11",
"@nestjs/websockets": "^11.1.11",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}