Simple monitor for displaying MIDI status for digital pianos.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

65 satır
1.8 KiB

  1. {
  2. "name": "@theoryofnekomata/piano-midi-monitor",
  3. "description": "Simple monitor for displaying MIDI status for digital pianos.",
  4. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com> (https://modal.sh)",
  5. "version": "0.1.0",
  6. "private": true,
  7. "license": "MIT",
  8. "dependencies": {
  9. "@testing-library/jest-dom": "^4.2.4",
  10. "@testing-library/react": "^9.3.2",
  11. "@testing-library/user-event": "^7.1.2",
  12. "@theoryofnekomata/react-musical-keyboard": "1.0.4",
  13. "@types/jest": "^24.0.0",
  14. "@types/node": "^12.0.0",
  15. "@types/react": "^16.9.0",
  16. "@types/react-dom": "^16.9.0",
  17. "electron-is-dev": "^1.2.0",
  18. "midi": "^1.0.0",
  19. "react": "^16.13.1",
  20. "react-dom": "^16.13.1",
  21. "react-scripts": "3.4.1",
  22. "typescript": "~3.7.2"
  23. },
  24. "scripts": {
  25. "postinstall": "electron-builder install-app-deps",
  26. "start": "concurrently \"BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
  27. "test": "react-scripts test",
  28. "compile": "tsc src/shell/electron.ts --outDir public/",
  29. "rebuild": "electron-rebuild -f -w midi",
  30. "prebuild": "react-scripts build",
  31. "build": "electron-builder"
  32. },
  33. "eslintConfig": {
  34. "extends": "react-app"
  35. },
  36. "browserslist": {
  37. "production": [
  38. ">0.2%",
  39. "not dead",
  40. "not op_mini all"
  41. ],
  42. "development": [
  43. "last 1 chrome version",
  44. "last 1 firefox version",
  45. "last 1 safari version"
  46. ]
  47. },
  48. "devDependencies": {
  49. "concurrently": "^5.3.0",
  50. "electron": "^9.2.0",
  51. "electron-builder": "^22.8.0",
  52. "wait-on": "^5.1.0"
  53. },
  54. "build": {
  55. "files": [
  56. "build/**/*",
  57. "node_modules/**/*"
  58. ],
  59. "appId": "sh.modal.apps.pianomidimonitor",
  60. "productName": "Piano MIDI Monitor",
  61. "copyright": "Copyright © 2020 TheoryOfNekomata"
  62. },
  63. "homepage": "./"
  64. }