-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.81 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
59
60
61
62
63
{
"name": "@livekit/rtc-ffi-bindings",
"description": "LiveKit RTC Node FFI bindings for internal use only",
"license": "Apache-2.0",
"author": "LiveKit",
"version": "0.12.66",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/livekit/rust-sdks.git",
"directory": "livekit-ffi-node-bindings"
},
"files": [
"index.js",
"index.d.ts",
"native.js",
"native.d.ts",
"proto"
],
"napi": {
"name": "rtc-node",
"triples": {
"defaults": false,
"additional": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
}
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.1"
},
"devDependencies": {
"@bufbuild/protoc-gen-es": "^1.10.1",
"@napi-rs/cli": "^3.5.1",
"@types/node": "^22.13.10",
"prettier": "^3.0.3",
"typescript": "5.9.3"
},
"optionalDependencies": {
"@livekit/rtc-ffi-bindings-darwin-arm64": "workspace:*",
"@livekit/rtc-ffi-bindings-darwin-x64": "workspace:*",
"@livekit/rtc-ffi-bindings-linux-arm64-gnu": "workspace:*",
"@livekit/rtc-ffi-bindings-linux-x64-gnu": "workspace:*",
"@livekit/rtc-ffi-bindings-win32-x64-msvc": "workspace:*"
},
"engines": {
"node": ">= 18"
},
"scripts": {
"gen:proto": "pnpm exec ./generate_proto.sh",
"build": "napi build --platform --release --dts native.d.ts --js native.js",
"build:debug": "napi build --platform",
"ci:version": "napi version",
"ci:artifacts": "napi artifacts"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}