Skip to content

Commit e94f1f9

Browse files
authored
V2.6.4 (#40)
* Update package JSON for NPM and move around folders.
1 parent 49b61c6 commit e94f1f9

24 files changed

+3507
-3502
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p align="center"><img width="450" src="https://superpowered.com/images/superpowered-animated.svg"></p>
1+
<p align="center"><img width="450" src="https://superpowered.com/images/logo.png"></p>
22

33
Superpowered Inc develops the Superpowered Web Audio JavaScript and WebAssembly SDK ("JS/WASM SDK") for modern web browsers, websites, progressive web apps and more.
44

@@ -11,6 +11,13 @@ For the most up-to-date information, see: https://superpowered.com/js-wasm-overv
1111

1212
The JS/WASM SDK is contained in this repository. For C++ SDKs for native apps, we offer Superpowered C++ Audio SDK, C++ Networking SDK, and C++ Crypto SDK featuring low-power and real-time latency. They can be found here: https://github.com/superpoweredSDK/Low-Latency-Android-iOS-Linux-Windows-tvOS-macOS-Interactive-Audio-Platform/
1313

14+
# Installation and Usage
15+
16+
```
17+
npm install @superpoweredsdk/web
18+
```
19+
20+
See usage guide over at https://docs.superpowered.com/getting-started/how-to-integrate?lang=js
1421

1522
# Supported Functionality
1623

Superpowered.js

-870
This file was deleted.

dist/Superpowered.js

+868
Large diffs are not rendered by default.

dist/superpowered-npm.wasm

1.25 MB
Binary file not shown.

dist/superpowered.wasm

1.25 MB
Binary file not shown.

example_effects/Superpowered.js

-870
This file was deleted.

example_guitardistortion/Superpowered.js

-870
This file was deleted.

example_timestretching/Superpowered.js

-870
This file was deleted.

examples/example_effects/Superpowered.js

+868
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/example_guitardistortion/Superpowered.js

+868
Large diffs are not rendered by default.
File renamed without changes.

example_guitardistortion/processor.js examples/example_guitardistortion/processor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import './Superpowered.js';
1+
import './superpowered.min.js';
22

33
class MyProcessor extends SuperpoweredWebAudio.AudioWorkletProcessor {
44
// runs after the constructor
File renamed without changes.

examples/example_timestretching/Superpowered.js

+868
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

+26-20
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
{
2-
"name": "superpowered",
3-
"description": "Superpowered interactive audio features in JavaScript + WebAssembly.",
4-
"version": "2.6.3",
5-
"browser": "Superpowered.js",
6-
"scripts": {
7-
"test": "echo \"No test specified.\" && exit 1"
8-
},
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/superpoweredSDK/web-audio-javascript-webassembly-SDK-interactive-audio.git"
12-
},
13-
"keywords": ["superpowered", "audio"],
14-
"author": "Splice",
15-
"license": "SEE LICENSE IN /license",
16-
"bugs": {
17-
"url": "https://github.com/superpoweredSDK/web-audio-javascript-webassembly-SDK-interactive-audio/issues",
18-
"email": "support@superpowered.zendesk.com"
19-
},
20-
"homepage": "https://docs.superpowered.com/"
21-
}
2+
"name": "@superpoweredsdk/web",
3+
"version": "2.6.4",
4+
"description": "Superpowered interactive audio features in JavaScript + WebAssembly.",
5+
"main": "dist/Superpowered.js",
6+
"browser": "dist/Superpowered.js",
7+
"directories": {
8+
"example": "examples"
9+
},
10+
"scripts": {
11+
"test": "echo \"Error: no test specified\" && exit 1"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/superpoweredSDK/web-audio-javascript-webassembly-SDK-interactive-audio.git"
16+
},
17+
"keywords": [
18+
"superpowered",
19+
"audio"
20+
],
21+
"author": "Splice",
22+
"license": "SEE LICENSE IN /license",
23+
"bugs": {
24+
"url": "https://github.com/superpoweredSDK/web-audio-javascript-webassembly-SDK-interactive-audio/issues"
25+
},
26+
"homepage": "https://docs.superpowered.com"
27+
}

0 commit comments

Comments
 (0)