-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 KB
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
{
"name": "libopus-node",
"version": "0.0.4",
"description": "libopus bindings for Node",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"license": "MIT",
"scripts": {
"install": "node-gyp-build",
"build-native": "node-gyp-build",
"build-tsup": "tsup",
"build": "npm run build-native && npm run build-tsup",
"prebuild": "prebuildify --napi --strip --tag-libc",
"lint": "tsc --noEmit && eslint .",
"test": "node src/tests/test.js"
},
"keywords": [
"native",
"opus",
"libopus",
"module",
"c",
"c++",
"bindings",
"binary"
],
"repository": {
"type": "git",
"url": "git+https://github.com/biw/libopus-node.git"
},
"dependencies": {
"node-addon-api": "8.3.1",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/babel__core": "^7.20.5",
"@types/node": "22.18.0",
"electron": "^39.1.0",
"eslint": "9.39.1",
"node-gyp": "11.2.0",
"prebuildify": "^6.0.1",
"tsup": "8.5.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.11.0"
}