@opendaw/studio-sdk 0.0.6
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 +33 -0
- package/package.json +38 -0
package/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# openDAW SDK
|
2
|
+
|
3
|
+
`npm install @opendaw/studio-sdk`
|
4
|
+
|
5
|
+
* `@opendaw/lib-std`
|
6
|
+
* `@opendaw/lib-dom`
|
7
|
+
* `@opendaw/lib-jsx`
|
8
|
+
* `@opendaw/lib-box`
|
9
|
+
* `@opendaw/lib-dsp`
|
10
|
+
* `@opendaw/lib-runtime`
|
11
|
+
* `@opendaw/lib-fusion`
|
12
|
+
* `@opendaw/studio-enums`
|
13
|
+
* `@opendaw/studio-boxes`
|
14
|
+
* `@opendaw/studio-adapters`
|
15
|
+
* `@opendaw/studio-core`
|
16
|
+
|
17
|
+
## Dual-Licensing Model
|
18
|
+
|
19
|
+
openDAW is available **under two alternative license terms**:
|
20
|
+
|
21
|
+
| Option | When to choose it | Obligations |
|
22
|
+
|---------------------------|----------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
23
|
+
| **A. GPL v3 (or later)** | You are happy for the entire work that includes openDAW to be released under GPL-compatible open-source terms. | – Must distribute complete corresponding source code under GPL.<br>– Must keep copyright & licence notices.<br>– May run openDAW privately in any software, open or closed (§0). |
|
24
|
+
| **B. Commercial Licence** | You wish to incorporate openDAW into **closed-source** or otherwise licence-incompatible software. | – Pay the agreed fee.<br>– No copyleft requirement for your own source code.<br>– Other terms as per the signed agreement. |
|
25
|
+
|
26
|
+
> **How to obtain the Commercial License**
|
27
|
+
> Email `andre.michelle@opendaw.org` with your company name, product description, and expected distribution volume.
|
28
|
+
|
29
|
+
If you redistribute openDAW or a derivative work **without** a commercial license, the GPL v3 terms apply automatically.
|
30
|
+
|
31
|
+
## License
|
32
|
+
|
33
|
+
[GPL v3](https://www.gnu.org/licenses/gpl-3.0.txt) © 2025 André Michelle
|
package/package.json
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
{
|
2
|
+
"name": "@opendaw/studio-sdk",
|
3
|
+
"version": "0.0.6",
|
4
|
+
"license": "LGPL-3.0-or-later",
|
5
|
+
"publishConfig": {
|
6
|
+
"access": "public"
|
7
|
+
},
|
8
|
+
"description": "One-line installer for the complete OpenDAW Studio tool-chain",
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "https://github.com/andremichelle/opendaw"
|
12
|
+
},
|
13
|
+
"keywords": [
|
14
|
+
"opendaw",
|
15
|
+
"audio-dev",
|
16
|
+
"daw-sdk",
|
17
|
+
"web-audio",
|
18
|
+
"music-apps",
|
19
|
+
"typescript",
|
20
|
+
"synth",
|
21
|
+
"fx"
|
22
|
+
],
|
23
|
+
"files": [
|
24
|
+
"README.md"
|
25
|
+
],
|
26
|
+
"dependencies": {
|
27
|
+
"@opendaw/lib-box": "^0.0.6",
|
28
|
+
"@opendaw/lib-dsp": "^0.0.6",
|
29
|
+
"@opendaw/lib-fusion": "^0.0.6",
|
30
|
+
"@opendaw/lib-runtime": "^0.0.6",
|
31
|
+
"@opendaw/lib-std": "^0.0.6",
|
32
|
+
"@opendaw/studio-adapters": "^0.0.6",
|
33
|
+
"@opendaw/studio-boxes": "^0.0.6",
|
34
|
+
"@opendaw/studio-core": "^0.0.6",
|
35
|
+
"@opendaw/studio-enums": "^0.0.6"
|
36
|
+
},
|
37
|
+
"gitHead": "04e5363a9851c7e116a306c2e933c5f410980fbe"
|
38
|
+
}
|