websockets-topgg
Version:
A real-time WebSocket client for Top.gg that converts webhooks into a persistent connection, enabling seamless vote tracking, reminders, and enhanced community engagement.
45 lines • 1.25 kB
JSON
{
"name": "websockets-topgg",
"version": "0.2.3",
"description": "A real-time WebSocket client for Top.gg that converts webhooks into a persistent connection, enabling seamless vote tracking, reminders, and enhanced community engagement.",
"keywords": [
"topgg",
"top.gg",
"votes",
"websocket",
"websocket-client"
],
"homepage": "https://websockets-topgg.com",
"bugs": {
"url": "https://github.com/Team-Woo/websockets-topgg/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Team-Woo/websockets-topgg.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsx watch examples/example.ts",
"start": "node dist/index.js",
"build": "tsc",
"build:ci": "npm i --include=dev && tsc",
"lint": "eslint src/**/*.ts",
"lint:ci": "eslint --output-file eslint_report.json --format json src/**/*.ts"
},
"author": "_Woo_",
"license": "ISC",
"dependencies": {
"lru-cache": "^11.0.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/ws": "^8.5.14",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}