websocket-client/package.json
Lilith 84e5b4e8ca
Some checks failed
Build and Publish / build-and-publish (push) Failing after 28s
deps-upgrade: ⬆️ Update dependencies to latest stable versions for security, performance, and compatibility fixes
2026-01-22 14:10:20 -08:00

51 lines
1.2 KiB
JSON

{
"name": "@lilith/websocket-client",
"version": "1.0.1",
"type": "module",
"description": "Generic WebSocket client library with React hooks for real-time features",
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me",
"url": "https://github.com/transquinnftw"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"test": "vitest run --passWithNoTests",
"lint": "eslint . --fix"
},
"dependencies": {
"socket.io-client": "^4.8.3"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@testing-library/react": "^16.3.1",
"@types/node": "^20.19.28",
"@types/react": "^19.2.8",
"eslint": "^9.39.2",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^5.4.21",
"vitest": "^4.0.16"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
}
}