-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.66 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
{
"name": "polly-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Monorepo root for @fairfox/polly and its example consumers",
"workspaces": [
"packages/*",
"packages/polly/tests",
"examples/minimal",
"examples/todo-list",
"examples/full-featured",
"examples/showcase",
"examples/mesh-large-initial-sync",
"examples/mesh-large-initial-sync-turn",
"examples/mesh-recovery-pair",
"examples/webrtc-p2p-chat/client",
"examples/webrtc-p2p-chat/server",
"examples/blob-share/server",
"examples/blob-share/client",
"examples/team-task-manager/server",
"examples/team-task-manager/client",
"examples/elysia-todo-app/server",
"examples/elysia-todo-app/client"
],
"scripts": {
"build": "bun run --filter @fairfox/polly build",
"build:lib": "bun run --filter @fairfox/polly build:lib",
"lint": "bun run --filter @fairfox/polly lint",
"lint:fix": "bun run --filter @fairfox/polly lint:fix",
"format": "bun run --filter @fairfox/polly format",
"typecheck": "bun run --filter @fairfox/polly typecheck",
"test": "bun run --filter @fairfox/polly test",
"test:tiers": "bun run --filter @fairfox/polly test:tiers",
"mutation": "stryker run",
"test-debt": "bun packages/polly/tools/mutate/src/report.ts",
"test-debt:decisions": "bun packages/polly/tools/mutate/src/decisions.ts",
"test-debt:verify": "bun packages/polly/tools/mutate/src/verify-matrix.ts --run",
"test:all": "bun run --filter @fairfox/polly test:all && bun run test:examples",
"test:examples": "echo '\\n=== Testing Examples ===' && bun run test:example:minimal && bun run test:example:todo-list && bun run test:example:full-featured && bun run test:example:showcase",
"test:example:minimal": "echo '\\n--- Minimal Example ---' && bun run --cwd examples/minimal test:all",
"test:example:todo-list": "echo '\\n--- Todo List ---' && bun run --cwd examples/todo-list test:all",
"test:example:full-featured": "echo '\\n--- Full Featured ---' && bun run --cwd examples/full-featured test:all",
"test:example:showcase": "echo '\\n--- Showcase ---' && bun run --cwd examples/showcase test:all",
"check": "bun run --filter @fairfox/polly check",
"publish:public": "bun run --filter @fairfox/polly publish:public"
},
"devDependencies": {
"@stryker-mutator/core": "9.6.1",
"stryker-mutator-bun-runner": "0.4.0"
},
"patchedDependencies": {
"stryker-mutator-bun-runner@0.4.0": "patches/stryker-mutator-bun-runner@0.4.0.patch"
},
"overrides": {
"qs": "6.15.2",
"uuid": "11.1.1",
"ws": "8.21.0",
"@babel/core": "7.29.7",
"js-yaml": "4.2.0"
}
}