forked from jitsi/rnnoise-wasm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.42 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": "@timephy/rnnoise-wasm",
"description": "This library implements the RNNoise noise suppression library as a WASM module for use in web frontends.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/timephy/rnnoise-wasm.git"
},
"scripts": {
"build": "npm run build:dockerimage && npm run build:emscripten && npm run build:typescript",
"lint": "publint",
"build:dockerimage": "docker image inspect -f '.' emscripten-autotools || docker build -t emscripten-autotools .",
"build:emscripten": "docker run --rm -v $(pwd):/src emscripten-autotools bash -x ./build.sh",
"build:typescript": "tsc"
},
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./NoiseSuppressorWorklet": {
"types": "./dist/NoiseSuppressorWorklet.d.ts",
"default": "./dist/NoiseSuppressorWorklet.js"
}
},
"devDependencies": {
"@types/audioworklet": "^0.0.56",
"@types/emscripten": "^1.39.13",
"publint": "^0.2.8",
"typescript": "^5.5.2"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"type": "module",
"publishConfig": {
"access": "public"
}
}