-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 897 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
{
"name": "reels-maker",
"version": "1.0.0",
"description": "App to create instagram reels based on audio peaks",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"keywords": [
"instagram",
"reels",
"audio peaks"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/audiobuffer-to-wav": "^1.0.2",
"@types/ffmpeg-concat": "^1.1.2",
"@types/ffprobe-static": "^2.0.1",
"@types/fluent-ffmpeg": "^2.1.21",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/webaudioapi": "^0.0.27",
"audiobuffer-to-wav": "^1.0.0",
"ffmpeg-concat": "^1.3.0",
"ffmpeg-static": "^5.1.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.2",
"gl": "^6.0.2",
"sharp": "^0.32.0",
"wavefile": "^11.0.0",
"web-audio-api": "^0.2.2"
}
}