UNPKG

discord-ws-gateway

Version:

Simple and tiny implementation of Discord's Gateway using web standard APIs

42 lines 1.06 kB
{ "name": "discord-ws-gateway", "version": "0.1.1", "description": "Simple and tiny implementation of Discord's Gateway using web standard APIs", "type": "module", "license": "MIT", "files": [ "dist", "!dist/index.d.cts" ], "dependencies": { "discord-api-types": "^0.38.13" }, "devDependencies": { "@chookslint/eslint-config-typescript": "^3.0.2", "@typescript-eslint/eslint-plugin": "^7.17.0", "@typescript-eslint/parser": "^7.17.0", "eslint": "^8.57.0", "tsup": "^8.2.2", "typescript": "^5.5.3" }, "exports": { ".": { "require": "./dist/index.cjs", "default": "./dist/index.js", "types": "./dist/index.d.ts" } }, "author": "Chooks22 <chooksdev@gmail.com>", "homepage": "https://github.com/Chooks22/discord-ws-gateway", "repository": { "type": "git", "url": "git+https://github.com/Chooks22/discord-ws-gateway.git" }, "keywords": [ "discord", "gateway" ], "scripts": { "build": "tsup --format esm,cjs --dts src/index.ts src/index.ts" } }