-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.73 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.73 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
{
"name": "pitch-detection",
"version": "1.0.0",
"type": "module",
"description": "Pitch, chroma, chord and key detection: YIN, McLeod, pYIN, HPS, cepstrum, SWIPE, autocorrelation, AMDF, NNLS chroma, chord templates, Krumhansl-Schmuckler",
"exports": {
".": "./index.js",
"./yin.js": "./yin.js",
"./mcleod.js": "./mcleod.js",
"./autocorrelation.js": "./autocorrelation.js",
"./amdf.js": "./amdf.js",
"./hps.js": "./hps.js",
"./cepstrum.js": "./cepstrum.js",
"./swipe.js": "./swipe.js",
"./pyin.js": "./pyin.js",
"./chroma.js": "./chroma.js",
"./chord.js": "./chord.js",
"./key.js": "./key.js"
},
"files": [
"index.js",
"yin.js",
"mcleod.js",
"autocorrelation.js",
"amdf.js",
"hps.js",
"cepstrum.js",
"swipe.js",
"pyin.js",
"chroma.js",
"chord.js",
"key.js"
],
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/pitch-detection.git"
},
"keywords": [
"pitch",
"pitch-detection",
"yin",
"pyin",
"mcleod",
"mpm",
"autocorrelation",
"amdf",
"hps",
"cepstrum",
"swipe",
"chroma",
"pcp",
"nnls",
"chord",
"chord-detection",
"key-detection",
"krumhansl",
"frequency",
"f0",
"fundamental",
"audio",
"dsp",
"signal-processing"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/pitch-detection/issues"
},
"homepage": "https://github.com/audiojs/pitch-detection#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"fourier-transform": "^2.2.0"
},
"devDependencies": {
"tst": "^9.4.0"
}
}