fedwave-chat-client/package.json

44 lines
890 B
JSON

{
"name": "fedwave-chat-client",
"version": "0.0.1",
"description": "Basic API client for a [fedwave] chat server",
"repository": "https://git.dvdrw.dev/dvdrw/fedwave-chat-client",
"author": "dvdrw",
"license": "LGPL-2.0",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"files": [
"src",
"dist",
"LICENSE"
],
"scripts": {
"build": "microbundle --compress=false"
},
"keywords": [
"api",
"websocket",
"socketio",
"bitwave",
"chat",
"client"
],
"dependencies": {
"socket.io-client": "^3.1.3"
},
"devDependencies": {
"@types/node": "^14.0.22",
"microbundle": "^0.15.1",
"typescript": "^4.7.4"
}
}