@opendaw/studio-sdk 0.0.44 → 0.0.46
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 +6 -5
- package/package.json +41 -41
package/README.md
CHANGED
|
@@ -21,15 +21,16 @@
|
|
|
21
21
|
|
|
22
22
|
openDAW is available **under two alternative license terms**:
|
|
23
23
|
|
|
24
|
-
| Option
|
|
25
|
-
|
|
26
|
-
| **A. AGPL v3 (or later)**
|
|
27
|
-
| **B. Commercial Licence**
|
|
24
|
+
| Option | When to choose it | Obligations |
|
|
25
|
+
|---------------------------|----------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
26
|
+
| **A. AGPL v3 (or later)** | You are happy for the entire work that includes openDAW to be released under AGPL-compatible open-source terms. | – Must distribute complete corresponding source code under AGPL.<br>– Must keep copyright & licence notices.<br>– Applies both to distribution **and** to public use via network/SaaS (§13).<br>– May run openDAW privately in any software, open or closed (§0). |
|
|
27
|
+
| **B. Commercial Licence** | You wish to incorporate openDAW into **closed-source** or otherwise licence-incompatible software or SaaS offerings. | – Pay the agreed fee.<br>– No copyleft requirement for your own source code.<br>– Other terms as per the signed agreement. |
|
|
28
28
|
|
|
29
29
|
> **How to obtain the Commercial License**
|
|
30
30
|
> Email `andre.michelle@opendaw.org` with your company name, product description, and expected distribution volume.
|
|
31
31
|
|
|
32
|
-
If you redistribute or run modified versions of openDAW for public use **without** a commercial license, the AGPL v3
|
|
32
|
+
If you redistribute or run modified versions of openDAW for public use **without** a commercial license, the AGPL v3
|
|
33
|
+
terms apply automatically.
|
|
33
34
|
|
|
34
35
|
## License
|
|
35
36
|
|
package/package.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
2
|
+
"name": "@opendaw/studio-sdk",
|
|
3
|
+
"version": "0.0.46",
|
|
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.37",
|
|
28
|
+
"@opendaw/lib-dawproject": "^0.0.23",
|
|
29
|
+
"@opendaw/lib-dom": "^0.0.37",
|
|
30
|
+
"@opendaw/lib-dsp": "^0.0.37",
|
|
31
|
+
"@opendaw/lib-fusion": "^0.0.37",
|
|
32
|
+
"@opendaw/lib-jsx": "^0.0.37",
|
|
33
|
+
"@opendaw/lib-midi": "^0.0.19",
|
|
34
|
+
"@opendaw/lib-runtime": "^0.0.37",
|
|
35
|
+
"@opendaw/lib-std": "^0.0.37",
|
|
36
|
+
"@opendaw/lib-xml": "^0.0.23",
|
|
37
|
+
"@opendaw/studio-adapters": "^0.0.38",
|
|
38
|
+
"@opendaw/studio-boxes": "^0.0.37",
|
|
39
|
+
"@opendaw/studio-core": "^0.0.46",
|
|
40
|
+
"@opendaw/studio-enums": "^0.0.28"
|
|
41
|
+
},
|
|
42
|
+
"gitHead": "cbe2d3409a066196db3434a48f61320f29c80d99"
|
|
43
43
|
}
|