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.
 
 
 
 

68 satır
1.9 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. "main": "public/electron.js",
  7. "private": true,
  8. "license": "MIT",
  9. "dependencies": {
  10. "@testing-library/jest-dom": "^4.2.4",
  11. "@testing-library/react": "^9.3.2",
  12. "@testing-library/user-event": "^7.1.2",
  13. "@theoryofnekomata/react-musical-keyboard": "1.0.7",
  14. "@types/jest": "^24.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. "yargs": "^15.4.1"
  24. },
  25. "scripts": {
  26. "postinstall": "electron-builder install-app-deps",
  27. "start": "concurrently \"BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
  28. "test": "react-scripts test",
  29. "compile": "tsc src/electron.ts --resolveJsonModule --esModuleInterop --outDir public/",
  30. "rebuild": "electron-rebuild -f -w midi",
  31. "prebuild": "react-scripts build",
  32. "build": "electron-builder"
  33. },
  34. "eslintConfig": {
  35. "extends": "react-app"
  36. },
  37. "browserslist": {
  38. "production": [
  39. ">0.2%",
  40. "not dead",
  41. "not op_mini all"
  42. ],
  43. "development": [
  44. "last 1 chrome version",
  45. "last 1 firefox version",
  46. "last 1 safari version"
  47. ]
  48. },
  49. "devDependencies": {
  50. "@types/node": "12",
  51. "concurrently": "^5.3.0",
  52. "electron": "^9.2.0",
  53. "electron-builder": "^22.8.0",
  54. "fast-check": "^2.1.0",
  55. "wait-on": "^5.1.0"
  56. },
  57. "build": {
  58. "files": [
  59. "./build/**/*",
  60. "./node_modules/**/*"
  61. ],
  62. "appId": "sh.modal.apps.pianomidimonitor",
  63. "productName": "Piano MIDI Monitor",
  64. "copyright": "Copyright © 2020 TheoryOfNekomata"
  65. },
  66. "homepage": "./"
  67. }