-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "audio-shader",
"version": "1.2.3",
"description": "Shader based audio processing stream",
"main": "index.js",
"scripts": {
"test": "node test/index.js",
"test:browser": "budo test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audio-lab/audio-shader.git"
},
"browserify": {
"transform": [
"brfs",
"glslify"
]
},
"browser": {
"nogl-shader-output": "gl-shader-output",
"nogl": "webgl-context"
},
"keywords": [
"shader",
"audio",
"sound",
"dsp",
"stackgl",
"webgl",
"shadertoy",
"headless-js",
"GPU sound",
"processing",
"gl",
"glsl",
"nogl"
],
"author": "Dima Yvanow <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audio-lab/audio-shader/issues"
},
"homepage": "https://github.com/audio-lab/audio-shader#readme",
"dependencies": {
"brfs": "^1.4.3",
"gl-shader": "^4.2.0",
"gl-shader-output": "^2.0.1",
"inherits": "^2.0.1",
"nogl": "^1.1.0",
"nogl-shader-output": "^1.4.0",
"webgl-context": "^2.2.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"audio-buffer-utils": "^3.0.1",
"audio-context": "^0.1.0",
"audio-generator": "^2.0.2",
"audio-slice": "^1.1.0",
"audio-speaker": "^1.2.2",
"audio-through": "^2.0.0",
"gl-fbo": "^2.0.5",
"gl-texture2d": "^2.0.10",
"glslify": "^5.0.2",
"is-browser": "^2.0.1",
"tst": "^1.1.8"
}
}