-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "livekit-server-sdk",
"version": "2.4.0",
"description": "Server-side SDK for LiveKit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:livekit/server-sdk-js.git",
"author": "David Zhao <david@davidzhao.com>",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --watch",
"build-docs": "typedoc",
"changeset": "changeset",
"ci:publish": "pnpm build && changeset publish",
"lint": "eslint .",
"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": {
"@livekit/protocol": "^1.14.0",
"camelcase-keys": "^9.0.0",
"jose": "^5.1.2"
},
"devDependencies": {
"@bufbuild/protobuf": "^1.7.2",
"@changesets/cli": "^2.27.1",
"@edge-runtime/vm": "^3.1.7",
"@livekit/changesets-changelog-github": "^0.0.4",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"eslint": "^9.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"happy-dom": "^14.0.0",
"prettier": "^3.0.0",
"typedoc": "^0.25.13",
"typescript": "5.4.x",
"vite": "^5.2.9",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=19"
}
}