xsound 3.0.16 → 3.1.0
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.
- package/README.md +10 -10
- package/build/types/MIDI/index.d.ts +3 -3
- package/build/types/MML/Part.d.ts +8 -8
- package/build/types/MML/Part.d.ts.map +1 -1
- package/build/types/MML/ScheduleWorker.d.ts +2 -0
- package/build/types/MML/ScheduleWorker.d.ts.map +1 -0
- package/build/types/MML/Sequence.d.ts +7 -7
- package/build/types/MML/index.d.ts +7 -7
- package/build/types/MediaModule/index.d.ts +5 -5
- package/build/types/MediaModule/index.d.ts.map +1 -1
- package/build/types/NoiseModule/index.d.ts +5 -0
- package/build/types/NoiseModule/index.d.ts.map +1 -1
- package/build/types/OneshotModule/index.d.ts +14 -14
- package/build/types/ProcessorModule/index.d.ts +8 -3
- package/build/types/ProcessorModule/index.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/NoiseGateProcessor.d.ts +20 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/NoiseGateProcessor.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/NoiseSuppressorProcessor.d.ts +35 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/NoiseSuppressorProcessor.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/PitchShifterProcessor.d.ts +36 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/PitchShifterProcessor.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/StereoProcessor.d.ts +13 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/StereoProcessor.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/VocalCancelerProcessor.d.ts +21 -0
- package/build/types/SoundModule/Effectors/AudioWorkletProcessors/VocalCancelerProcessor.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/Effector.d.ts +1 -4
- package/build/types/SoundModule/Effectors/Effector.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/NoiseGate.d.ts +1 -6
- package/build/types/SoundModule/Effectors/NoiseGate.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/NoiseSuppressor.d.ts +2 -10
- package/build/types/SoundModule/Effectors/NoiseSuppressor.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/PitchShifter.d.ts +2 -4
- package/build/types/SoundModule/Effectors/PitchShifter.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/Reverb.d.ts +11 -11
- package/build/types/SoundModule/Effectors/Stereo.d.ts +2 -3
- package/build/types/SoundModule/Effectors/Stereo.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/VocalCanceler.d.ts +2 -10
- package/build/types/SoundModule/Effectors/VocalCanceler.d.ts.map +1 -1
- package/build/types/SoundModule/Recorder/index.d.ts +1 -1
- package/build/types/SoundModule/Recorder/index.d.ts.map +1 -1
- package/build/types/SoundModule/Session/index.d.ts +2 -2
- package/build/types/SoundModule/index.d.ts.map +1 -1
- package/build/types/StreamModule/index.d.ts +3 -3
- package/build/types/XSound/index.d.ts +21 -21
- package/build/types/main.d.ts +7 -1
- package/build/types/main.d.ts.map +1 -1
- package/build/types/types.d.ts +5 -0
- package/build/types/types.d.ts.map +1 -1
- package/build/types/worker.d.ts +19 -0
- package/build/types/worker.d.ts.map +1 -0
- package/build/types/worklet.d.ts +29 -0
- package/build/types/worklet.d.ts.map +1 -0
- package/build/xsound.js +1 -1
- package/build/xsound.js.LICENSE.txt +1 -1
- package/build/xsound.js.map +1 -1
- package/build/xsound.min.js +1 -1
- package/build/xsound.min.js.LICENSE.txt +1 -1
- package/build/xsound.min.js.map +1 -1
- package/package.json +15 -17
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xsound",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": ">=14.17.0 <=18.
|
|
5
|
+
"node": ">=14.17.0 <=18.15.x"
|
|
6
6
|
},
|
|
7
7
|
"description": "XSound gives Web Developers Powerful Audio Features Easily !",
|
|
8
8
|
"main": "build/xsound.js",
|
|
@@ -14,11 +14,9 @@
|
|
|
14
14
|
"type": "tsc --noEmit",
|
|
15
15
|
"build:types": "tsc --project tsconfig.types.json",
|
|
16
16
|
"build:js": "cross-env NODE_ENV=production webpack --progress --mode production",
|
|
17
|
-
"build:js:dev": "cross-env NODE_ENV=development webpack --progress",
|
|
18
17
|
"build": "npm run clean && npm run build:types && npm run build:js",
|
|
19
|
-
"build:dev": "npm run clean && npm run build:types && npm run build:js:dev",
|
|
20
18
|
"watch": "npm run clean && webpack --progress --watch",
|
|
21
|
-
"dev": "webpack-dev-server --progress",
|
|
19
|
+
"dev": "webpack-dev-server --progress --mode production",
|
|
22
20
|
"test": "jest",
|
|
23
21
|
"test:coverage": "jest --coverage",
|
|
24
22
|
"test:verbose": "jest --verbose",
|
|
@@ -37,7 +35,7 @@
|
|
|
37
35
|
"lint-staged": {
|
|
38
36
|
"{src,test,mock}/**/*.ts": [
|
|
39
37
|
"eslint --fix",
|
|
40
|
-
"tsc --esModuleInterop --noEmit --skipLibCheck --target
|
|
38
|
+
"tsc --esModuleInterop --noEmit --skipLibCheck --moduleResolution node --target es2022"
|
|
41
39
|
]
|
|
42
40
|
},
|
|
43
41
|
"repository": {
|
|
@@ -67,12 +65,12 @@
|
|
|
67
65
|
"README.md"
|
|
68
66
|
],
|
|
69
67
|
"devDependencies": {
|
|
70
|
-
"@types/jest": "^29.
|
|
71
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
72
|
-
"@typescript-eslint/parser": "^5.
|
|
68
|
+
"@types/jest": "^29.5.0",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
70
|
+
"@typescript-eslint/parser": "^5.56.0",
|
|
73
71
|
"cross-env": "^7.0.3",
|
|
74
72
|
"dotenv-webpack": "^8.0.1",
|
|
75
|
-
"eslint": "^8.
|
|
73
|
+
"eslint": "^8.36.0",
|
|
76
74
|
"eslint-cli": "^1.1.1",
|
|
77
75
|
"eslint-config-standard": "^17.0.0",
|
|
78
76
|
"eslint-plugin-import": "^2.27.5",
|
|
@@ -80,16 +78,16 @@
|
|
|
80
78
|
"eslint-plugin-node": "^11.1.0",
|
|
81
79
|
"eslint-plugin-promise": "^6.1.1",
|
|
82
80
|
"husky": "4.3.8",
|
|
83
|
-
"jest": "^29.
|
|
84
|
-
"jest-environment-jsdom": "^29.
|
|
85
|
-
"lint-staged": "^13.
|
|
86
|
-
"terser-webpack-plugin": "^5.3.
|
|
81
|
+
"jest": "^29.5.0",
|
|
82
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
83
|
+
"lint-staged": "^13.2.0",
|
|
84
|
+
"terser-webpack-plugin": "^5.3.7",
|
|
87
85
|
"ts-jest": "^29.0.5",
|
|
88
86
|
"ts-loader": "^9.4.2",
|
|
89
|
-
"typedoc": "^0.23.
|
|
87
|
+
"typedoc": "^0.23.28",
|
|
90
88
|
"typescript": "^4.7.4",
|
|
91
|
-
"webpack": "^5.
|
|
89
|
+
"webpack": "^5.76.2",
|
|
92
90
|
"webpack-cli": "^5.0.1",
|
|
93
|
-
"webpack-dev-server": "^4.
|
|
91
|
+
"webpack-dev-server": "^4.13.1"
|
|
94
92
|
}
|
|
95
93
|
}
|