-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 754 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 754 Bytes
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
{
"name": "spectrogram",
"version": "1.0.0",
"description": "Generate spectrograms from audio files with metadata preservation",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts"
},
"keywords": [
"spectrogram",
"audio",
"fft",
"visualization",
"metadata",
"png",
"audio-analysis"
],
"author": "",
"license": "MIT",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"canvas": "^2.11.2",
"commander": "^11.1.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}