-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "rnnoise",
"version": "0.1.8",
"description": "Node.js bindings to Xiph's RNNoise denoising C library",
"keywords": [
"audio",
"noise-suppression",
"rnnoise",
"pcm",
"api",
"deeplearning",
"rnn"
],
"main": "lib/index.js",
"homepage": "https://github.com/cedrickchee/rnnoise-nodejs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cedrickchee/rnnoise-nodejs.git"
},
"author": "Cedric Chee <[email protected]>",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.3.3",
"node-pre-gyp": "^0.14.0",
"node-pre-gyp-github": "^1.4.3"
},
"scripts": {
"install": "node-pre-gyp install --update-binary --fallback-to-build=false || neon build --release",
"package": "node-pre-gyp package",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish",
"build": "neon build",
"build-release": "neon build --release",
"version": "npm run build-release"
},
"engines": {
"node": ">= 8.11.3"
},
"binary": {
"module_name": "index",
"host": "https://github.com/cedrickchee/rnnoise-nodejs/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native/"
}
}