supersonic-scsynth-bundle 0.24.3 → 0.25.2

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.
Files changed (3) hide show
  1. package/LICENSE +11 -23
  2. package/README.md +13 -8
  3. package/package.json +6 -5
package/LICENSE CHANGED
@@ -1,27 +1,15 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 3, 29 June 2007
1
+ SuperSonic Bundle - Mixed Licensing
2
+ Copyright (c) 2025 Sam Aaron
3
3
 
4
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
- Everyone is permitted to copy and distribute verbatim copies
6
- of this license document, but changing it is not allowed.
4
+ This meta-package bundles components with different licenses:
7
5
 
8
- This program is free software: you can redistribute it and/or modify
9
- it under the terms of the GNU General Public License as published by
10
- the Free Software Foundation, either version 3 of the License, or
11
- (at your option) any later version.
6
+ - supersonic-scsynth (client API): MIT
7
+ - supersonic-scsynth-core (WASM engine + workers): GPL-3.0-or-later
8
+ - supersonic-scsynth-synthdefs: MIT
9
+ - supersonic-scsynth-samples: CC0
12
10
 
13
- This program is distributed in the hope that it will be useful,
14
- but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
- GNU General Public License for more details.
11
+ See each package's LICENSE file for full terms.
17
12
 
18
- You should have received a copy of the GNU General Public License
19
- along with this program. If not, see <https://www.gnu.org/licenses/>.
20
-
21
- ---
22
-
23
- SuperSonic - WebAssembly synthesis engine
24
- Copyright (C) 2025 Sam Aaron (where source differs from SuperCollider)
25
-
26
- Based on SuperCollider's scsynth
27
- Copyright (C) 2002-2023 James McCartney and SuperCollider contributors
13
+ The most restrictive license in this bundle is GPL-3.0-or-later
14
+ (supersonic-scsynth-core). If you need to avoid GPL obligations,
15
+ use supersonic-scsynth directly with the core loaded from CDN.
package/README.md CHANGED
@@ -6,7 +6,8 @@ Complete SuperSonic bundle with everything included.
6
6
 
7
7
  This is a convenience meta-package that includes:
8
8
 
9
- - **[supersonic-scsynth](https://www.npmjs.com/package/supersonic-scsynth)** - The core scsynth WASM engine (~450KB)
9
+ - **[supersonic-scsynth](https://www.npmjs.com/package/supersonic-scsynth)** - MIT-licensed client API (~50KB)
10
+ - **[supersonic-scsynth-core](https://www.npmjs.com/package/supersonic-scsynth-core)** - GPL-licensed WASM engine + workers (~450KB)
10
11
  - **[supersonic-scsynth-synthdefs](https://www.npmjs.com/package/supersonic-scsynth-synthdefs)** - All 120 Sonic Pi synthdefs (~67KB)
11
12
  - **[supersonic-scsynth-samples](https://www.npmjs.com/package/supersonic-scsynth-samples)** - All 206 Sonic Pi samples (~34MB)
12
13
 
@@ -43,12 +44,13 @@ SuperSonic works directly from CDN with zero configuration using the default `po
43
44
 
44
45
  ## Package Breakdown
45
46
 
46
- | Package | Size | Contains |
47
- |---------|------|----------|
48
- | `supersonic-scsynth` | ~450KB | Core WASM engine |
49
- | `supersonic-scsynth-synthdefs` | ~67KB | 120 Sonic Pi synthdefs |
50
- | `supersonic-scsynth-samples` | ~34MB | 206 Sonic Pi samples |
51
- | `supersonic-scsynth-bundle` | ~2KB | Meta-package (depends on all three) |
47
+ | Package | Size | License | Contains |
48
+ |---------|------|---------|----------|
49
+ | `supersonic-scsynth` | ~50KB | MIT | Client API |
50
+ | `supersonic-scsynth-core` | ~450KB | GPL-3.0 | WASM engine + workers |
51
+ | `supersonic-scsynth-synthdefs` | ~67KB | MIT | 120 Sonic Pi synthdefs |
52
+ | `supersonic-scsynth-samples` | ~34MB | CC0 | 206 Sonic Pi samples |
53
+ | `supersonic-scsynth-bundle` | ~2KB | Mixed | Meta-package (depends on all four) |
52
54
 
53
55
  ## Documentation
54
56
 
@@ -56,4 +58,7 @@ See the main [SuperSonic repository](https://github.com/samaaron/supersonic) for
56
58
 
57
59
  ## License
58
60
 
59
- GPL-3.0-or-later
61
+ Mixed - see individual packages:
62
+ - `supersonic-scsynth` - GPL-3.0-or-later (engine) / MIT (client API)
63
+ - `supersonic-scsynth-synthdefs` - MIT
64
+ - `supersonic-scsynth-samples` - CC0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supersonic-scsynth-bundle",
3
- "version": "0.24.3",
3
+ "version": "0.25.2",
4
4
  "description": "Complete SuperSonic bundle: scsynth engine + Sonic Pi synthdefs and samples",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -20,7 +20,7 @@
20
20
  "bundle"
21
21
  ],
22
22
  "author": "Sam Aaron",
23
- "license": "GPL-3.0-or-later",
23
+ "license": "SEE LICENSE IN LICENSE",
24
24
  "bugs": {
25
25
  "url": "https://github.com/samaaron/supersonic/issues"
26
26
  },
@@ -31,8 +31,9 @@
31
31
  "LICENSE"
32
32
  ],
33
33
  "dependencies": {
34
- "supersonic-scsynth": "^0.1.6",
35
- "supersonic-scsynth-synthdefs": "^0.1.6",
36
- "supersonic-scsynth-samples": "^0.1.6"
34
+ "supersonic-scsynth": "^0.25.2",
35
+ "supersonic-scsynth-core": "^0.24.3",
36
+ "supersonic-scsynth-synthdefs": "^0.25.2",
37
+ "supersonic-scsynth-samples": "^0.25.2"
37
38
  }
38
39
  }