-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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": "@livekit/rtc-node",
"description": "LiveKit RTC Node",
"license": "Apache-2.0",
"author": "LiveKit",
"version": "0.13.24",
"main": "dist/index.js",
"require": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/livekit/node-sdks.git",
"directory": "packages/livekit-rtc"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@datastructures-js/deque": "1.0.8",
"@livekit/mutex": "^1.0.0",
"@livekit/typed-emitter": "^3.0.0",
"@livekit/rtc-ffi-bindings": "0.12.52",
"pino": "^9.0.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@bufbuild/protobuf": "^1.10.1",
"@types/node": "^22.13.10",
"vitest": "^3.0.0",
"prettier": "^3.0.3",
"tsup": "^8.3.5",
"typescript": "5.8.2",
"livekit-server-sdk": "workspace:*"
},
"engines": {
"node": ">= 18"
},
"scripts": {
"prebuild": "node -p \"'export const SDK_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "pnpm prebuild && tsup --onSuccess \"tsc --declaration --emitDeclarationOnly\"",
"lint": "eslint -f unix \"src/**/*.ts\" --ignore-pattern \"src/proto/*\"",
"test": "vitest run src"
}
}