@opendaw/lib-fusion 0.0.13 → 0.0.15
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 +25 -1
- package/package.json +7 -7
package/README.md
CHANGED
@@ -1 +1,25 @@
|
|
1
|
-
|
1
|
+
_This package is part of the openDAW SDK_
|
2
|
+
|
3
|
+
# @opendaw/lib-fusion
|
4
|
+
|
5
|
+
Web-based audio workstation fusion utilities for TypeScript projects.
|
6
|
+
|
7
|
+
## File System Operations
|
8
|
+
|
9
|
+
* **OpfsWorker.ts** - Origin Private File System worker implementation
|
10
|
+
* **OpfsProtocol.ts** - OPFS communication protocol definitions
|
11
|
+
|
12
|
+
## Audio Visualization
|
13
|
+
|
14
|
+
* **Peaks.ts** - Audio peak data management and processing
|
15
|
+
* **PeakWorker.ts** - Web Worker for peak generation
|
16
|
+
* **PeakProtocol.ts** - Peak data communication protocol
|
17
|
+
* **PeaksPainter.ts** - Canvas-based peak visualization rendering
|
18
|
+
|
19
|
+
## Live Audio Streaming
|
20
|
+
|
21
|
+
* **live-stream/** - Directory containing live audio stream processing utilities
|
22
|
+
|
23
|
+
## Core Types
|
24
|
+
|
25
|
+
* **types.ts** - Type definitions for fusion operations
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@opendaw/lib-fusion",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.15",
|
4
4
|
"main": "./dist/index.js",
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"license": "LGPL-3.0-or-later",
|
@@ -22,13 +22,13 @@
|
|
22
22
|
"test": "echo \"No tests to run\""
|
23
23
|
},
|
24
24
|
"dependencies": {
|
25
|
-
"@opendaw/lib-box": "^0.0.
|
26
|
-
"@opendaw/lib-runtime": "^0.0.
|
27
|
-
"@opendaw/lib-std": "^0.0.
|
25
|
+
"@opendaw/lib-box": "^0.0.15",
|
26
|
+
"@opendaw/lib-runtime": "^0.0.15",
|
27
|
+
"@opendaw/lib-std": "^0.0.15"
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@opendaw/eslint-config": "^0.0.
|
31
|
-
"@opendaw/typescript-config": "^0.0.
|
30
|
+
"@opendaw/eslint-config": "^0.0.15",
|
31
|
+
"@opendaw/typescript-config": "^0.0.15"
|
32
32
|
},
|
33
|
-
"gitHead": "
|
33
|
+
"gitHead": "76b361985c1e34e609619835960e58ae7fbfd7d2"
|
34
34
|
}
|