package.json 682 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "node-peerjs-client",
  3. "version": "1.0.0",
  4. "description": "node.js wrtc + peerjs",
  5. "keywords": [
  6. "webrtc",
  7. "wrtc",
  8. "nodejs",
  9. "peerjs",
  10. "p2p"
  11. ],
  12. "repository": "https://github.com/nicejs-is-cool/node-peerjs",
  13. "author": "nicejs-is-cool",
  14. "license": "MIT",
  15. "scripts": {
  16. "postinstall": "npm run build",
  17. "build": "node build.js",
  18. "prepublishOnly": "npm run build"
  19. },
  20. "main": "index.js",
  21. "devDependencies": {
  22. "parcel": "^1.12.3"
  23. },
  24. "dependencies": {
  25. "blob-to-arraybuffer": "0.0.1",
  26. "filereader": "^0.10.3",
  27. "node-blob": "0.0.2",
  28. "node-fetch": "^2.6.7",
  29. "wrtc": "^0.4.7",
  30. "ws": "^8.5.0"
  31. }
  32. }