-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 962 Bytes
/
package.json
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
{
"name": "audioform",
"version": "0.3.0",
"description": "Extract waveform data from audio files in NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"node",
"audio",
"waveform",
"waveform-data",
"server",
"visual"
],
"author": "Hannes Diercks <[email protected]> (https://musicu.be/)",
"bugs": {
"url": "https://github.com/musicube-tech/audioform/issues"
},
"homepage": "https://github.com/musicube-tech/audioform#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/musicube-tech/audioform.git"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"tempy": "1.0.1",
"web-audio-api": "0.2.2"
},
"devDependencies": {
"@types/node": "17.0.21",
"typescript": "4.6.2"
}
}