-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 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
82
83
84
85
86
87
88
89
90
{
"name": "@audio/filter",
"version": "3.0.1",
"type": "module",
"sideEffects": false,
"description": "Audio-facing filters — umbrella for @audio/filter-* atoms (biquads, comb, resonator, DC blocker, pre-emphasis, spectral tilt, analog ladder models)",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"types": "./index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node test.js",
"test:types": "tsc --noEmit --strict --module nodenext --moduleResolution nodenext test/types.ts",
"test:all": "npm test --workspaces --if-present && npm test",
"plot": "node plot/generate.js",
"publish:all": "npm publish --workspaces && npm publish"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/filter.git"
},
"bugs": {
"url": "https://github.com/audiojs/filter/issues"
},
"homepage": "https://github.com/audiojs/filter#readme",
"keywords": [
"audio",
"dsp",
"filter",
"a-weighting",
"c-weighting",
"k-weighting",
"itu-468",
"riaa",
"equalizer",
"parametric-eq",
"graphic-eq",
"crossover",
"crossfeed",
"moog",
"korg",
"diode-ladder",
"vocoder",
"formant",
"gammatone",
"bark",
"erb",
"octave-band",
"psychoacoustics",
"signal-processing"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"dependencies": {
"@audio/filter-biquad": "^1.0.0",
"@audio/filter-comb": "^1.0.0",
"@audio/filter-dcblocker": "^1.0.0",
"@audio/filter-resonator": "^1.0.0",
"@audio/filter-variable": "^1.0.0",
"@audio/filter-preemphasis": "^1.0.0",
"@audio/filter-spectral-tilt": "^1.0.0",
"@audio/filter-moog-ladder": "^1.0.0",
"@audio/filter-diode-ladder": "^1.0.0",
"@audio/filter-korg35": "^1.0.0",
"@audio/filter-oberheim": "^1.0.0"
},
"devDependencies": {
"tst": "^9.4.0",
"typescript": "^5.8.2",
"digital-filter": "^2.3.0"
},
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"main": "index.js"
}