-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
75 lines (75 loc) · 1.72 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "audify",
"version": "1.9.0",
"description": "Play/Stream/Record PCM audio data & Encode/Decode Opus to PCM audio data",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"docs": "typedoc index.d.ts --hideGenerator --name Audify.js",
"rebuild": "cmake-js compile",
"install": "prebuild-install -r napi || npm run rebuild",
"deploy": "np --yolo",
"build-binaries": "run-script-os",
"build-binaries:win32": "node --security-revert=CVE-2024-27980 ./node_modules/prebuild/bin.js --backend cmake-js --include-regex \"^.*\\.(node|dylib|dll|so(\\.[0-9])?)$\" -r napi --all --verbose -u %GITHUB_TOKEN%",
"build-binaries:darwin:linux": "prebuild --backend cmake-js --include-regex \"^.*\\.(node|dylib|dll|so(\\.[0-9])?)$\" -r napi --all --verbose -u $GITHUB_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/almoghamdani/audify.git"
},
"keywords": [
"play",
"stream",
"pcm",
"encode",
"decode",
"opus",
"rtaudio",
"alsa",
"jack",
"pulseaudio",
"oss",
"coreaudio",
"asio",
"wasapi",
"record",
"input",
"output",
"speaker",
"sound",
"audio",
"music",
"voip",
"headphones"
],
"author": "Almog Hamdani",
"license": "MIT",
"bugs": {
"url": "https://github.com/almoghamdani/audify/issues"
},
"homepage": "https://github.com/almoghamdani/audify#readme",
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.3.0",
"node-abi": "^3.62.0",
"node-addon-api": "^8.0.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"np": "^10.0.5",
"prebuild": "^13.0.0",
"run-script-os": "^1.1.6",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"binary": {
"napi_versions": [
5,
6,
7,
8,
9
]
}
}