@mattkrick/fast-rtc-swarm
Version:
A full-mesh WebRTC swarm built on top of simple-peer
66 lines (65 loc) • 1.81 kB
JSON
{
"name": "@mattkrick/fast-rtc-swarm",
"version": "0.4.1",
"description": "A full-mesh WebRTC swarm built on top of simple-peer",
"keywords": [
"WebRTC",
"rtc",
"decentralized",
"distributed",
"p2p",
"peer",
"swarm",
"full-mesh"
],
"main": "dist/FastRTCSwarm.js",
"typings": "dist/FastRTCSwarm.d.ts",
"author": "Matt Krick <matt.krick@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/mattkrick/fast-rtc-swarm"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"docs:build": "typedoc --out docs --target es6 --mode file --ignoreCompilerErrors --hideGenerator src",
"docs:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"lint": "yarn prettier && yarn standard",
"prettier": "prettier --write --loglevel warn ./**/*.ts",
"precommit": "lint-staged",
"standard": "tslint -c tslint.json --project tsconfig.json --fix ./**/*.ts",
"watch": "webpack --config webpack.config.js -w"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@types/uuid": "^3.4.3",
"awesome-typescript-loader": "^5.2.0",
"clean-webpack-plugin": "^0.1.19",
"gh-pages": "^1.2.0",
"husky": "^0.14.0",
"lint-staged": "^7.1.3",
"prettier": "^1.13.4",
"strict-event-emitter-types": "^2.0.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"typedoc": "^0.11.0",
"typescript": "^3.0.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@mattkrick/fast-rtc-peer": "^0.4.1",
"eventemitter3": "^3.1.0",
"tslib": "^1.9.3"
}
}