-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "synaudio-cli",
"version": "0.0.4",
"description": "A command line tool for aligning and synchronizing two or more audio clips based on their content.",
"author": {
"name": "Ethan Halsall",
"email": "ethanhalsall@pm.me"
},
"keywords": [
"wasm",
"simd",
"audio",
"video",
"resampling",
"analog audio",
"audio processing",
"synchronization"
],
"license": "GPL-3.0",
"type": "module",
"main": "index.js",
"bin": {
"synaudio-cli": "index.js"
},
"scripts": {
"format": "prettier --cache --write \"**/*.*{js,ts}*\""
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/eshaz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eshaz/synaudio-cli.git"
},
"bugs": {
"url": "https://github.com/eshaz/synaudio-cli/issues"
},
"homepage": "https://github.com/eshaz/synaudio-cli#readme",
"dependencies": {
"synaudio": "0.4.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"prettier": "^3.8.1"
}
}