-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 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
40
41
42
43
{
"name": "audio-splitter",
"version": "1.1.4",
"description": "Simple package to split a merged audio track to parts by silence analysis",
"main": "dist/index.js",
"types": "dist",
"scripts": {
"dev": "tsnd dev/index.ts",
"build": "tsc",
"publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpirescarvalho/audio-splitter.git"
},
"keywords": [
"audio",
"split",
"audio-split",
"audio-splitter",
"ffmpeg",
"merged",
"tracks",
"songs",
"song-slitter",
"merged-audio"
],
"author": "Marcelo Carvalho",
"license": "ISC",
"bugs": {
"url": "https://github.com/mpirescarvalho/audio-splitter/issues"
},
"homepage": "https://github.com/mpirescarvalho/audio-splitter#readme",
"dependencies": {
"fluent-ffmpeg": "^2.1.2"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.17",
"@types/node": "^15.3.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}