A WebRTC based tool to support low latency audio conferencing. This is targeted to allow musicians to be able to jam together.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
1013 B

  1. {
  2. "name": "jamming",
  3. "version": "0.1.0",
  4. "description": "Library to handle low latency audio conferencing.",
  5. "main": "lib/index.js",
  6. "private": true,
  7. "scripts": {
  8. "build": "yarn run build:lib && yarn run build:webpack",
  9. "build:lib": "babel src/ -d lib/",
  10. "build:webpack": "webpack lib/index.js -o dist/jamming.js",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "author": "John-Mark Gurney <jmg@funkthat.com>",
  14. "license": "BSD-3-Clause",
  15. "browserslist": "> 0.25%, not dead",
  16. "babel": {
  17. "presets": [
  18. "@babel/preset-env"
  19. ],
  20. "plugins": [
  21. [
  22. "@babel/plugin-proposal-class-properties"
  23. ]
  24. ]
  25. },
  26. "devDependencies": {
  27. "@babel/cli": "^7.8.4",
  28. "@babel/core": "^7.9.0",
  29. "@babel/plugin-proposal-class-properties": "^7.8.3",
  30. "@babel/preset-env": "^7.9.5",
  31. "babelify": "^10.0.0",
  32. "webpack": "^4.42.1",
  33. "webpack-cli": "^3.3.11"
  34. },
  35. "dependencies": {
  36. "inline-worker": "https://github.com/mohayonao/inline-worker.git#7014cd64c3cd6eb884f6743aad682a995e262bb9"
  37. }
  38. }