-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
41 lines (41 loc) · 1.39 KB
/
package.json
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
{
"name": "websockets-streaming-audio",
"version": "2.1.6",
"author": "Scott Stensland <scottstensland@gmail.com> ( https://stackoverflow.com/users/147175/scott-stensland )",
"bugs": {
"url": "https://github.com/scottstensland/websockets-streaming-audio/issues"
},
"dependencies": {
"audio-utils": "2.x.x",
"bufferutil": "^4.0.6",
"express": "^4.21.0",
"shared-utils": "2.x.x",
"utf-8-validate": ">=6.0.4",
"ws": ">=8.8.0"
},
"description": "Click a browser button to launch a node.js process on the server side which streams audio using web sockets back to the browser which is then rendered using web audio API My plan is to make this modular enough to get added to your process as simple API calls",
"engines": {
"node": ">=v18.3.0"
},
"homepage": "https://github.com/scottstensland",
"keywords": [
"Node.js",
"websockets",
"webworkers",
"webaudio",
"audio",
"streaming"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/scottstensland/websockets-streaming-audio.git"
},
"scripts": {
"start_min": "node src_min/app.js",
"start_loki": "node src/app_loki.js",
"start": "node src/app.js",
"test": "make"
},
"subdomain": "websockets-streaming-audio"
}