supersonic-scsynth-bundle 0.24.1 → 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.
- package/LICENSE +11 -23
- package/README.md +13 -8
- package/package.json +6 -5
package/LICENSE
CHANGED
|
@@ -1,27 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
SuperSonic Bundle - Mixed Licensing
|
|
2
|
+
Copyright (c) 2025 Sam Aaron
|
|
3
3
|
|
|
4
|
-
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
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
|
-
|
|
19
|
-
|
|
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)** -
|
|
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` | ~
|
|
49
|
-
| `supersonic-scsynth-
|
|
50
|
-
| `supersonic-scsynth-
|
|
51
|
-
| `supersonic-scsynth-
|
|
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
|
-
|
|
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.
|
|
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": "
|
|
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.
|
|
35
|
-
"supersonic-scsynth-
|
|
36
|
-
"supersonic-scsynth-
|
|
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
|
}
|