xsound 3.4.0 → 3.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/README.md +11 -1
  2. package/build/types/AudioModule/index.d.ts.map +1 -1
  3. package/build/types/MML/ScheduleWorker.d.ts.map +1 -1
  4. package/build/types/MML/Sequencer.d.ts.map +1 -1
  5. package/build/types/MML/Tokenizer.d.ts.map +1 -1
  6. package/build/types/MML/TreeConstructor.d.ts.map +1 -1
  7. package/build/types/MML/index.d.ts.map +1 -1
  8. package/build/types/MediaModule/index.d.ts.map +1 -1
  9. package/build/types/MixerModule/index.d.ts.map +1 -1
  10. package/build/types/NoiseModule/index.d.ts.map +1 -1
  11. package/build/types/OneshotModule/index.d.ts.map +1 -1
  12. package/build/types/OscillatorModule/Glide.d.ts.map +1 -1
  13. package/build/types/OscillatorModule/Oscillator.d.ts.map +1 -1
  14. package/build/types/OscillatorModule/index.d.ts.map +1 -1
  15. package/build/types/ProcessorModule/index.d.ts.map +1 -1
  16. package/build/types/SoundModule/Analyser/FFT.d.ts.map +1 -1
  17. package/build/types/SoundModule/Analyser/Time.d.ts.map +1 -1
  18. package/build/types/SoundModule/Analyser/TimeOverview.d.ts.map +1 -1
  19. package/build/types/SoundModule/Analyser/Visualizer.d.ts.map +1 -1
  20. package/build/types/SoundModule/Analyser/index.d.ts.map +1 -1
  21. package/build/types/SoundModule/Effectors/AudioWorkletProcessors/NoiseGateProcessor.d.ts.map +1 -1
  22. package/build/types/SoundModule/Effectors/AudioWorkletProcessors/NoiseSuppressorProcessor.d.ts.map +1 -1
  23. package/build/types/SoundModule/Effectors/AudioWorkletProcessors/PitchShifterProcessor.d.ts.map +1 -1
  24. package/build/types/SoundModule/Effectors/AudioWorkletProcessors/StereoProcessor.d.ts.map +1 -1
  25. package/build/types/SoundModule/Effectors/AudioWorkletProcessors/VocalCancelerProcessor.d.ts.map +1 -1
  26. package/build/types/SoundModule/Effectors/Autopanner.d.ts.map +1 -1
  27. package/build/types/SoundModule/Effectors/BitCrusher.d.ts.map +1 -1
  28. package/build/types/SoundModule/Effectors/Chorus.d.ts.map +1 -1
  29. package/build/types/SoundModule/Effectors/Compressor.d.ts.map +1 -1
  30. package/build/types/SoundModule/Effectors/Delay.d.ts.map +1 -1
  31. package/build/types/SoundModule/Effectors/EnvelopeGenerator.d.ts.map +1 -1
  32. package/build/types/SoundModule/Effectors/Equalizer.d.ts.map +1 -1
  33. package/build/types/SoundModule/Effectors/Filter.d.ts.map +1 -1
  34. package/build/types/SoundModule/Effectors/Flanger.d.ts.map +1 -1
  35. package/build/types/SoundModule/Effectors/Fuzz.d.ts.map +1 -1
  36. package/build/types/SoundModule/Effectors/Listener.d.ts.map +1 -1
  37. package/build/types/SoundModule/Effectors/NoiseGate.d.ts.map +1 -1
  38. package/build/types/SoundModule/Effectors/NoiseSuppressor.d.ts.map +1 -1
  39. package/build/types/SoundModule/Effectors/OverDrive.d.ts.map +1 -1
  40. package/build/types/SoundModule/Effectors/Panner.d.ts.map +1 -1
  41. package/build/types/SoundModule/Effectors/Phaser.d.ts.map +1 -1
  42. package/build/types/SoundModule/Effectors/PitchShifter.d.ts.map +1 -1
  43. package/build/types/SoundModule/Effectors/Preamp.d.ts.map +1 -1
  44. package/build/types/SoundModule/Effectors/Reverb.d.ts.map +1 -1
  45. package/build/types/SoundModule/Effectors/Ringmodulator.d.ts.map +1 -1
  46. package/build/types/SoundModule/Effectors/Stereo.d.ts.map +1 -1
  47. package/build/types/SoundModule/Effectors/Tremolo.d.ts.map +1 -1
  48. package/build/types/SoundModule/Effectors/VocalCanceler.d.ts.map +1 -1
  49. package/build/types/SoundModule/Effectors/Wah.d.ts.map +1 -1
  50. package/build/types/SoundModule/Recorder/index.d.ts.map +1 -1
  51. package/build/types/StreamModule/index.d.ts.map +1 -1
  52. package/build/types/XSound/index.d.ts.map +1 -1
  53. package/build/types/main.d.ts.map +1 -1
  54. package/build/xsound.js +1 -1
  55. package/build/xsound.js.LICENSE.txt +1 -1
  56. package/build/xsound.js.map +1 -1
  57. package/build/xsound.min.js +1 -1
  58. package/build/xsound.min.js.LICENSE.txt +1 -1
  59. package/build/xsound.min.js.map +1 -1
  60. package/package.json +15 -16
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "xsound",
3
- "version": "3.4.0",
3
+ "version": "3.4.2",
4
4
  "engines": {
5
- "node": ">=16.0.0 <=18.16.x"
5
+ "node": ">=16.0.0 <=18.17.x"
6
6
  },
7
7
  "description": "XSound gives Web Developers Powerful Audio Features Easily !",
8
8
  "main": "build/xsound.js",
@@ -34,8 +34,7 @@
34
34
  },
35
35
  "lint-staged": {
36
36
  "{src,test,mock}/**/*.ts": [
37
- "eslint --fix",
38
- "tsc --esModuleInterop --noEmit --skipLibCheck --moduleResolution node --target es2022"
37
+ "eslint --fix"
39
38
  ]
40
39
  },
41
40
  "repository": {
@@ -65,28 +64,28 @@
65
64
  "README.md"
66
65
  ],
67
66
  "devDependencies": {
68
- "@types/jest": "^29.5.3",
69
- "@typescript-eslint/eslint-plugin": "^6.2.0",
70
- "@typescript-eslint/parser": "^6.2.0",
67
+ "@types/jest": "^29.5.5",
68
+ "@typescript-eslint/eslint-plugin": "^6.7.2",
69
+ "@typescript-eslint/parser": "^6.7.2",
71
70
  "cross-env": "^7.0.3",
72
71
  "dotenv-webpack": "^8.0.1",
73
- "eslint": "^8.46.0",
72
+ "eslint": "^8.49.0",
74
73
  "eslint-cli": "^1.1.1",
75
74
  "eslint-config-standard": "^17.1.0",
76
- "eslint-import-resolver-typescript": "^3.5.5",
77
- "eslint-plugin-import": "^2.28.0",
78
- "eslint-plugin-n": "^16.0.1",
75
+ "eslint-import-resolver-typescript": "^3.6.0",
76
+ "eslint-plugin-import": "^2.28.1",
77
+ "eslint-plugin-n": "^16.1.0",
79
78
  "eslint-plugin-node": "^11.1.0",
80
79
  "eslint-plugin-promise": "^6.1.1",
81
80
  "husky": "4.3.8",
82
- "jest": "^29.6.2",
83
- "jest-environment-jsdom": "^29.6.2",
84
- "lint-staged": "^13.2.3",
81
+ "jest": "^29.7.0",
82
+ "jest-environment-jsdom": "^29.7.0",
83
+ "lint-staged": "^14.0.1",
85
84
  "terser-webpack-plugin": "^5.3.9",
86
85
  "ts-jest": "^29.1.1",
87
86
  "ts-loader": "^9.4.4",
88
- "typedoc": "^0.24.8",
89
- "typescript": "^5.1.6",
87
+ "typedoc": "^0.25.1",
88
+ "typescript": "^5.2.2",
90
89
  "webpack": "^5.88.2",
91
90
  "webpack-cli": "^5.1.4",
92
91
  "webpack-dev-server": "^4.15.1"