p2p-message
Version:
A simple and efficient P2P messaging library for browser-to-browser communication
66 lines (65 loc) • 1.74 kB
JSON
{
"name": "p2p-message",
"version": "1.0.3",
"description": "A simple and efficient P2P messaging library for browser-to-browser communication",
"main": "dist/messaging.min.js",
"unpkg": "dist/messaging.min.js",
"jsdelivr": "dist/messaging.min.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "jest",
"lint": "eslint src/**/*.js",
"serve": "npx serve dist",
"deploy-docs": "npm run build && cp src/example.html docs/example.html"
},
"files": [
"dist",
"docs"
],
"dependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"crypto-js": "^4.2.0",
"https-browserify": "^1.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"terser": "^5.38.1",
"url": "^0.11.4",
"webtorrent": "^1.9.7"
},
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^10.0.1",
"jest": "^26.0.0",
"terser-webpack-plugin": "^5.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^4.10.0"
},
"author": "Benjamin Hudgens",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bhudgens/p2p-message.git"
},
"bugs": {
"url": "https://github.com/bhudgens/p2p-message/issues"
},
"homepage": "https://github.com/bhudgens/p2p-message#readme",
"keywords": [
"p2p",
"messaging",
"webrtc",
"browser-to-browser",
"communication",
"peer-to-peer",
"realtime"
]
}