-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.22 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
91
92
{
"version": "1.1.1",
"name": "@audio/shift",
"type": "module",
"types": "index.d.ts",
"description": "Canonical pitch-shifting algorithms: phase vocoder, peak-locked, transient-aware, PSOLA, WSOLA, granular, PaulStretch, SMS, HPSS, formant, sampler, hybrid",
"sideEffects": false,
"main": "index.js",
"exports": {
".": "./index.js",
"./atom": "./atom.js",
"./package.json": "./package.json"
},
"files": [
"index.js",
"index.d.ts",
"pitch-shift.js",
"atom.js",
"host.js"
],
"workspaces": [
"packages/*"
],
"scripts": {
"test": "node test.js",
"quality": "node scripts/quality.js",
"quality:ci": "node scripts/quality.js --ci",
"bench": "node scripts/bench.js",
"prepublishOnly": "node test.js && node scripts/quality.js --ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/shift.git"
},
"keywords": [
"pitch-shift",
"pitch-shifting",
"phase-vocoder",
"peak-locked",
"transient",
"psola",
"wsola",
"formant",
"granular",
"paulstretch",
"sms",
"sinusoidal",
"hpss",
"sampler",
"hybrid",
"variable-pitch",
"audio",
"dsp",
"signal-processing"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/shift/issues"
},
"homepage": "https://github.com/audiojs/shift#readme",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@audio/shift-delay": "^1.0.0",
"@audio/shift-formant": "^1.0.0",
"@audio/shift-granular": "^1.0.0",
"@audio/shift-lpc": "^1.0.0",
"@audio/shift-hpss": "^1.0.0",
"@audio/shift-hybrid": "^1.0.0",
"@audio/shift-ola": "^1.0.0",
"@audio/shift-paulstretch": "^1.0.0",
"@audio/shift-psola": "^1.0.0",
"@audio/shift-pvoc": "^1.0.0",
"@audio/shift-pvoc-lock": "^1.0.0",
"@audio/shift-sample": "^1.0.0",
"@audio/shift-sms": "^1.0.0",
"@audio/shift-transient": "^1.0.0",
"@audio/shift-wsola": "^1.0.0"
},
"devDependencies": {
"@audio/quality": "^1.0.0",
"audio-lena": "^3.0.0",
"fourier-transform": "^2.3.0",
"tst": "^9.4.0"
},
"atom": "./atom.js"
}