forked from sapphi-red/web-noise-suppressor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
76
77
{
"name": "@sapphi-red/web-noise-suppressor",
"version": "0.3.5",
"description": "Noise suppressor nodes for Web Audio API.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./noiseGateWorklet.js": {
"types": "./dist/noiseGate/workletProcessor.d.ts",
"default": "./dist/noiseGate/workletProcessor.js"
},
"./rnnoiseWorklet.js": {
"types": "./dist/rnnoise/workletProcessor.d.ts",
"default": "./dist/rnnoise/workletProcessor.js"
},
"./speexWorklet.js": {
"types": "./dist/speex/workletProcessor.d.ts",
"default": "./dist/speex/workletProcessor.js"
},
"./rnnoise_simd.wasm": "./dist/rnnoise_simd.wasm",
"./rnnoise.wasm": "./dist/rnnoise.wasm",
"./speex.wasm": "./dist/speex.wasm"
},
"scripts": {
"build": "pnpm run build:js && pnpm run build:wasm",
"build:js": "tsup",
"build:wasm": "tsx scripts/copy-wasm.ts",
"lint": "eslint --cache .",
"format": "prettier --write --cache .",
"type-check": "tsc --noEmit",
"test": "tsx node_modules/uvu/bin.js src .*\\.test\\.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphi-red/web-noise-suppressor.git"
},
"author": "sapphi-red",
"license": "MIT",
"bugs": {
"url": "https://github.com/sapphi-red/web-noise-suppressor/issues"
},
"homepage": "https://github.com/sapphi-red/web-noise-suppressor#readme",
"files": [
"dist"
],
"devDependencies": {
"@sapphi-red/speex-preprocess-wasm": "^0.3.4",
"@shiguredo/rnnoise-wasm": "^2022.2.0",
"@types/audioworklet": "^0.0.55",
"@types/emscripten": "^1.39.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@typescript/lib-dom": "npm:@types/web@^0.0.146",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"uvu": "^0.5.6",
"wasm-feature-detect": "^1.6.1"
},
"packageManager": "pnpm@9.1.1",
"pnpm": {
"patchedDependencies": {
"@shiguredo/rnnoise-wasm@2022.2.0": "patches/@shiguredo__rnnoise-wasm@2022.2.0.patch"
}
}
}