-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.4 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
{
"name": "omp-session-gateway",
"version": "0.4.1",
"private": true,
"type": "module",
"packageManager": "bun@1.4.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"check": "bun run check:repository && bun run typecheck && bun run build && bun run test && bun run check:capability-leaks && bun run check:identifier-leaks",
"check:repository": "bun scripts/check-repository.ts",
"typecheck": "bun run --filter '*' typecheck",
"build": "bun run --filter '@omp-session-gateway/web' build",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov --parallel=1",
"check:capability-leaks": "bun scripts/check-capability-leaks.ts",
"check:identifier-leaks": "bun scripts/check-identifier-leaks.ts",
"release:build": "bun scripts/build-release.ts",
"qualify:stable": "bun scripts/stable-qualification.ts",
"smoke:release": "bun scripts/post-release-smoke.ts",
"qualify:relay-soak": "bun scripts/relay-soak.ts",
"test:browser": "bun run build && bun scripts/test-browser.ts",
"media:capture": "bun run build && bun scripts/media/capture-readme-media.ts",
"media:check": "bun scripts/media/check-readme-media.ts"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@types/bun": "1.4.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"fast-check": "4.9.0",
"typescript": "7.0.2"
}
}