UNPKG

mudvault-mesh

Version:

Node.js client library for connecting to MudVault Mesh network

62 lines 1.43 kB
{ "name": "mudvault-mesh", "version": "1.0.0", "description": "Node.js client library for connecting to MudVault Mesh network", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build" }, "keywords": [ "mud", "mudvault", "mesh", "mmo", "chat", "imc", "websocket", "gaming", "communication" ], "author": "MudVault Team <asmodeusbrooding@gmail.com>", "license": "MIT", "homepage": "https://github.com/Coffee-Nerd/OpenIMC#readme", "repository": { "type": "git", "url": "git+https://github.com/Coffee-Nerd/OpenIMC.git", "directory": "clients/nodejs" }, "bugs": { "url": "https://github.com/Coffee-Nerd/OpenIMC/issues" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "ws": "^8.14.2", "uuid": "^9.0.1" }, "devDependencies": { "@types/node": "^20.8.6", "@types/ws": "^8.5.8", "@types/uuid": "^9.0.6", "@types/jest": "^29.5.6", "typescript": "^5.2.2", "jest": "^29.7.0", "ts-jest": "^29.1.1", "@typescript-eslint/eslint-plugin": "^6.8.0", "@typescript-eslint/parser": "^6.8.0", "eslint": "^8.51.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ] }