@fairfox/polly 0.76.0 → 0.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/verify/src/cli.js +75 -51
- package/dist/tools/verify/src/cli.js.map +5 -5
- package/dist/tools/verify/src/stryker/index.d.ts +32 -0
- package/dist/tools/verify/src/stryker/index.js +95 -0
- package/dist/tools/verify/src/stryker/index.js.map +10 -0
- package/dist/tools/visualize/src/cli.js +18 -9
- package/dist/tools/visualize/src/cli.js.map +3 -3
- package/package.json +14 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fairfox/polly",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Multi-execution-context framework with reactive state and cross-context messaging for Chrome extensions, PWAs, and worker-based applications",
|
|
@@ -58,6 +58,10 @@
|
|
|
58
58
|
"import": "./dist/tools/verify/src/config.js",
|
|
59
59
|
"types": "./dist/tools/verify/src/config.d.ts"
|
|
60
60
|
},
|
|
61
|
+
"./stryker": {
|
|
62
|
+
"import": "./dist/tools/verify/src/stryker/index.js",
|
|
63
|
+
"types": "./dist/tools/verify/src/stryker/index.d.ts"
|
|
64
|
+
},
|
|
61
65
|
"./test": {
|
|
62
66
|
"import": "./dist/tools/test/src/index.js",
|
|
63
67
|
"types": "./dist/tools/test/src/index.d.ts"
|
|
@@ -141,6 +145,7 @@
|
|
|
141
145
|
"test:all": "bun run lint && bun run typecheck && bun run --cwd tests test:all",
|
|
142
146
|
"test:e2e:visualize": "bun scripts/e2e-visualize.ts",
|
|
143
147
|
"test:e2e:verify-mesh-seed": "bun scripts/e2e-verify-mesh-seed.ts",
|
|
148
|
+
"test:e2e:stryker": "bun scripts/e2e-stryker-verify.ts",
|
|
144
149
|
"test:e2e:mesh:fast": "bun scripts/e2e-mesh-offline-online-drain.ts",
|
|
145
150
|
"test:e2e:mesh": "bun scripts/e2e-mesh-offline-online-drain.ts && bun scripts/e2e-mesh-revocation-prebaked.ts && bun scripts/e2e-mesh-three-peer-convergence.ts && bun scripts/e2e-mesh-revocation-runtime.ts && bun scripts/e2e-mesh-revocation-propagation.ts && bun scripts/e2e-mesh-revocation-offline-catchup.ts && bun scripts/e2e-mesh-corrupted-state-recovery.ts",
|
|
146
151
|
"check": "bun scripts/check.ts",
|
|
@@ -152,7 +157,10 @@
|
|
|
152
157
|
"@automerge/automerge-repo-network-websocket": "2.5.5",
|
|
153
158
|
"@automerge/automerge-repo-storage-indexeddb": "2.5.5",
|
|
154
159
|
"@automerge/automerge-repo-storage-nodefs": "2.5.5",
|
|
160
|
+
"@babel/parser": "7.29.3",
|
|
161
|
+
"@babel/traverse": "7.29.0",
|
|
155
162
|
"@biomejs/biome": "2.4.14",
|
|
163
|
+
"@stryker-mutator/api": "9.6.1",
|
|
156
164
|
"@elysiajs/eden": "1.4.9",
|
|
157
165
|
"@types/bun": "1.3.13",
|
|
158
166
|
"@types/chrome": "0.1.40",
|
|
@@ -194,9 +202,13 @@
|
|
|
194
202
|
"werift": ">= 0.19.0",
|
|
195
203
|
"@roamhq/wrtc": ">= 0.8.0",
|
|
196
204
|
"marked": ">= 12.0.0",
|
|
197
|
-
"dompurify": ">= 3.0.0"
|
|
205
|
+
"dompurify": ">= 3.0.0",
|
|
206
|
+
"@stryker-mutator/api": ">= 9.0.0"
|
|
198
207
|
},
|
|
199
208
|
"peerDependenciesMeta": {
|
|
209
|
+
"@stryker-mutator/api": {
|
|
210
|
+
"optional": true
|
|
211
|
+
},
|
|
200
212
|
"elysia": {
|
|
201
213
|
"optional": true
|
|
202
214
|
},
|