-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
64
65
66
67
{
"name": "livekit-server-sdk",
"version": "2.15.1",
"description": "Server-side SDK for LiveKit",
"main": "dist/index.js",
"require": "dist/index.cjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/livekit/node-sdks.git",
"directory": "packages/livekit-server-sdk"
},
"author": "David Zhao <david@davidzhao.com>",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup --onSuccess \"tsc -p tsconfig.json --declaration --emitDeclarationOnly --skipLibCheck\"",
"build:watch": "tsc --watch",
"build-docs": "typedoc",
"changeset": "changeset",
"ci:publish": "pnpm build && changeset publish",
"lint": "eslint src",
"format": "prettier --write src",
"format:check": "prettier --check src",
"test": "vitest --environment node run",
"test:browser": "vitest --environment happy-dom run",
"test:edge": "vitest --environment edge-runtime run"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.1",
"@livekit/protocol": "^1.43.1",
"camelcase-keys": "^9.0.0",
"jose": "^6.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@edge-runtime/vm": "^5.0.0",
"@livekit/changesets-changelog-github": "^0.0.4",
"@types/node": "^20.10.1",
"happy-dom": "^20.0.0",
"prettier": "^3.0.0",
"tsup": "^8.3.5",
"typedoc": "^0.28.0",
"typescript": "5.8.2",
"vite": "^5.2.9",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}