@opendaw/studio-core 0.0.24 → 0.0.25
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/dist/AudioOfflineRenderer.d.ts +8 -0
- package/dist/AudioOfflineRenderer.d.ts.map +1 -0
- package/dist/AudioOfflineRenderer.js +88 -0
- package/dist/AudioWorklets.d.ts +1 -1
- package/dist/AudioWorklets.d.ts.map +1 -1
- package/dist/AudioWorklets.js +3 -2
- package/dist/FilePickerAcceptTypes.d.ts +8 -0
- package/dist/FilePickerAcceptTypes.d.ts.map +1 -0
- package/dist/FilePickerAcceptTypes.js +27 -0
- package/dist/MidiDevices.d.ts +2 -1
- package/dist/MidiDevices.d.ts.map +1 -1
- package/dist/MidiDevices.js +12 -1
- package/dist/WorkerAgents.d.ts +1 -1
- package/dist/WorkerAgents.d.ts.map +1 -1
- package/dist/WorkerAgents.js +3 -3
- package/dist/capture/CaptureAudio.d.ts.map +1 -1
- package/dist/capture/CaptureAudio.js +7 -2
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/processors.js +2 -2
- package/dist/processors.js.map +4 -4
- package/dist/project/Project.d.ts +1 -1
- package/dist/project/Project.d.ts.map +1 -1
- package/dist/project/Project.js +3 -3
- package/dist/project/ProjectEnv.d.ts +0 -7
- package/dist/project/ProjectEnv.d.ts.map +1 -1
- package/dist/samples/OpenSampleAPI.d.ts +14 -0
- package/dist/samples/OpenSampleAPI.d.ts.map +1 -0
- package/dist/samples/OpenSampleAPI.js +109 -0
- package/dist/samples/SampleAPI.d.ts +10 -0
- package/dist/samples/SampleAPI.d.ts.map +1 -0
- package/dist/samples/SampleAPI.js +1 -0
- package/dist/samples/SampleImporter.d.ts +11 -0
- package/dist/samples/SampleImporter.d.ts.map +1 -0
- package/dist/samples/SampleImporter.js +1 -0
- package/dist/workers.js +2 -2
- package/dist/workers.js.map +4 -4
- package/package.json +14 -14
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@opendaw/studio-core",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.25",
|
4
4
|
"license": "LGPL-3.0-or-later",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -26,23 +26,23 @@
|
|
26
26
|
"test": "vitest run --config vitest.config.ts"
|
27
27
|
},
|
28
28
|
"dependencies": {
|
29
|
-
"@opendaw/lib-box": "^0.0.
|
30
|
-
"@opendaw/lib-dawproject": "^0.0.
|
31
|
-
"@opendaw/lib-dom": "^0.0.
|
32
|
-
"@opendaw/lib-dsp": "^0.0.
|
33
|
-
"@opendaw/lib-fusion": "^0.0.
|
34
|
-
"@opendaw/lib-runtime": "^0.0.
|
35
|
-
"@opendaw/lib-std": "^0.0.
|
36
|
-
"@opendaw/studio-adapters": "^0.0.
|
37
|
-
"@opendaw/studio-boxes": "^0.0.
|
29
|
+
"@opendaw/lib-box": "^0.0.24",
|
30
|
+
"@opendaw/lib-dawproject": "^0.0.10",
|
31
|
+
"@opendaw/lib-dom": "^0.0.24",
|
32
|
+
"@opendaw/lib-dsp": "^0.0.24",
|
33
|
+
"@opendaw/lib-fusion": "^0.0.24",
|
34
|
+
"@opendaw/lib-runtime": "^0.0.24",
|
35
|
+
"@opendaw/lib-std": "^0.0.24",
|
36
|
+
"@opendaw/studio-adapters": "^0.0.24",
|
37
|
+
"@opendaw/studio-boxes": "^0.0.24",
|
38
38
|
"@opendaw/studio-enums": "^0.0.20"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
41
41
|
"@opendaw/eslint-config": "^0.0.18",
|
42
|
-
"@opendaw/studio-core-processors": "^0.0.
|
43
|
-
"@opendaw/studio-core-workers": "^0.0.
|
44
|
-
"@opendaw/studio-forge-boxes": "^0.0.
|
42
|
+
"@opendaw/studio-core-processors": "^0.0.24",
|
43
|
+
"@opendaw/studio-core-workers": "^0.0.18",
|
44
|
+
"@opendaw/studio-forge-boxes": "^0.0.24",
|
45
45
|
"@opendaw/typescript-config": "^0.0.19"
|
46
46
|
},
|
47
|
-
"gitHead": "
|
47
|
+
"gitHead": "6d864cfb079bb09a5fcb8f2db5d015a4581bea6a"
|
48
48
|
}
|