-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 971 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 971 Bytes
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
{
"name": "@livekit/token-server-node",
"version": "0.1.0",
"private": true,
"type": "module",
"module": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"build": "tsc",
"lint": "eslint -f unix \"**/*.ts\"",
"format": "prettier --write \"**/*.ts\""
},
"dependencies": {
"@livekit/protocol": "^1.41.0",
"body-parser": "^2.2.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"livekit-server-sdk": "^2.8.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.0",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.15.9"
}