-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.18 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@audio/effect",
"version": "2.1.4",
"type": "module",
"sideEffects": false,
"description": "Audio effects — umbrella for @audio/effect-* atoms (modulation, delay, distortion, utility)",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "node test.js",
"plot": "node plot/generate.js",
"test:all": "npm test --workspaces --if-present && npm test",
"publish:all": "npm publish --workspaces && npm publish"
},
"files": [
"index.js"
],
"keywords": [
"audio",
"effect",
"dsp",
"phaser",
"flanger",
"chorus",
"reverb",
"compressor",
"distortion",
"bitcrusher"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/effect.git"
},
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/audiojs/effect/issues"
},
"homepage": "https://github.com/audiojs/effect#readme",
"main": "index.js",
"dependencies": {
"@audio/effect-phaser": "^1.0.0",
"@audio/effect-flanger": "^2.0.0",
"@audio/effect-chorus": "^2.0.0",
"@audio/effect-wah": "^1.0.0",
"@audio/effect-autowah": "^1.0.0",
"@audio/effect-tremolo": "^1.0.0",
"@audio/effect-vibrato": "^2.0.0",
"@audio/effect-ringmod": "^1.0.0",
"@audio/effect-freqshift": "^1.0.0",
"@audio/effect-delay": "^1.0.0",
"@audio/effect-multitap": "^1.0.0",
"@audio/effect-pingpong": "^1.0.0",
"@audio/effect-distortion": "^1.0.0",
"@audio/effect-bitcrusher": "^1.0.0",
"@audio/effect-exciter": "^1.0.0",
"@audio/effect-gain": "^1.0.0",
"@audio/effect-mixer": "^1.0.0",
"@audio/effect-slew": "^1.0.0",
"@audio/effect-noiseshaper": "^1.0.0",
"@audio/effect-graindelay": "^1.0.0",
"@audio/effect-lofi": "^1.0.0",
"@audio/effect-sbr": "^1.0.0",
"@audio/effect-stutter": "^1.0.0",
"@audio/effect-subbass": "^1.0.0",
"@audio/effect-rotary": "^0.1.0",
"@audio/effect-tapestop": "^0.1.0"
},
"funding": "https://github.com/sponsors/audiojs"
}