-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "silk-wasm",
"description": "Tencent silk encoder for Node.js and browser",
"version": "3.6.3",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/idranme/silk-wasm.git"
},
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"compile:cjs": "esbuild src/index.ts --outfile=lib/index.cjs --bundle --minify-whitespace --minify-syntax --platform=node --target=es2022 --inject:scripts/patch.js --define:import.meta.url=import_meta_url",
"compile:esm": "esbuild src/index.ts --outfile=lib/index.mjs --bundle --minify-whitespace --minify-syntax --platform=node --target=es2022 --format=esm",
"build": "yarn compile:cjs && yarn compile:esm && tsc"
},
"keywords": [
"silk",
"tencent",
"encoder",
"sdk",
"wasm",
"decoder",
"codec"
],
"devDependencies": {
"esbuild": "^0.24.0",
"typescript": "^5.6.3",
"wav-file-decoder": "^1.0.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.14.0"
}
}