kichat.js
Version:
A JavaScript library to connect to Kick.com chat.
56 lines (55 loc) • 1.28 kB
JSON
{
"name": "kichat.js",
"version": "1.0.4",
"description": "A JavaScript library to connect to Kick.com chat.",
"keywords": [
"kick",
"chat",
"message",
"pusher",
"kichat.js"
],
"author": {
"name": "ZackSB",
"email": "zaacksb@users.noreply.github.com",
"url": "https://github.com/zaacksb"
},
"license": "MIT",
"homepage": "https://github.com/zaacksb/kichat.js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zaacksb/kichat.js.git"
},
"bugs": "https://github.com/zaacksb/kichat.js/issues",
"type": "module",
"main": "./dist/kichat.js.node.mjs",
"browser": "./dist/kichat.js.browser.min.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/kichat.js.node.mjs",
"require": "./dist/kichat.js.node.cjs",
"default": "./dist/kichat.js.node.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/* && tsx scripts/build.ts && tsc",
"tsc-w": "tsc -w"
},
"devDependencies": {
"@types/node": "^22.17.0",
"@types/ws": "^8.18.1",
"esbuild": "^0.25.8",
"typescript": "^5.9.2"
},
"dependencies": {
"ws": "^8.18.3"
}
}