-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
{
"repository": {
"type": "git",
"url": "git+https://github.com/victorqueiroz/node-opusenc.git"
},
"main": "./index.js",
"files": [
"index.d.ts",
"index.js",
"CMakeLists.txt",
"src/**/*.{mk,am,ac,cc,c,cpp,in,h,hpp,txt,cmake}",
"speexdsp-cmake/**/*.{mk,am,ac,cc,c,cpp,in,h,hpp,txt,cmake}",
"libopusenc-cmake/**/*.{mk,am,ac,cc,c,cpp,in,h,hpp,txt,cmake}",
"opus/**/*.{mk,am,ac,cc,c,cpp,in,h,hpp,txt,cmake}",
"opusfile/**/*.{mk,am,ac,cc,c,cpp,in,h,hpp,txt,cmake}",
"ogg/**/*.{mk,am,ac,cc,c,cpp,in,h,hpp,txt,cmake}",
"{opus,opusfile}/package_version"
],
"scripts": {
"test": "npx ava test/index.ts",
"compile:debug": "npm run compile -- -D",
"compile": "npx cmake-js compile -C",
"test:docker": "npx ts-node scripts/test-using-docker.ts",
"prepublishOnly": "npx ts-node scripts/generate-constants.ts && npm run postinstall && npm test",
"postinstall": "npm run compile"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx"
]
},
"keywords": [
"opus",
"opusenc",
"libopusenc",
"opusfile",
"audio",
"libopus",
"speexdsp",
"voice",
"voip"
],
"license": "MIT",
"name": "@native-bindings/libopus",
"version": "1.0.0",
"devDependencies": {
"@types/node": "^18.18.6",
"@types/node-fetch": "^2.6.6",
"@types/semver": "^7.5.3",
"ava": "^5.3.1",
"c8": "^8.0.1",
"chalk": "4.x",
"child-process-utilities": "^0.0.10",
"codestreamjs": "^0.0.1",
"esmock": "^2.5.6",
"glob": "9.x",
"mathjs": "^11.11.2",
"node-fetch": "^2.7.0",
"prettier": "2.x",
"ringbud": "^1.0.11",
"rxjs": "7.x",
"semver": "^7.5.4",
"textstreamjs": "^0.0.4",
"ts-node": "^10.9.1",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.2.1",
"nan": "^2.18.0"
}
}