forked from livekit-examples/meet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 983 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 983 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
{
"name": "livekit-meet",
"version": "0.2.0",
"private": true,
"workspaces": ["site", "run/next"],
"scripts": {
"dev": "bun run --cwd site dev",
"dev:api": "bun run --cwd run/next dev",
"build": "bun run --cwd site build",
"start": "bun run --cwd site start",
"start:api": "bun run --cwd run/next start",
"lint": "oxlint .",
"lint:api": "oxlint run/next",
"lint:fix": "oxlint . --fix",
"test": "bun run --cwd site test",
"test:api": "bun run --cwd run/next test",
"test:all": "bun run test && bun run test:api",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"format:check": "oxfmt --check",
"format:write": "oxfmt",
"check": "bun run lint && bun run format:check && bun run test:all",
"check:full": "bun run check && bun run test:e2e",
"book": "cd book && mdbook serve"
},
"devDependencies": {
"@playwright/test": "^1.58.2"
},
"engines": {
"node": ">=24"
}
}