@crvouga/sqlite-mem 1.3.1 → 1.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crvouga/sqlite-mem",
3
- "version": "1.3.1",
3
+ "version": "1.5.0",
4
4
  "description": "Pure TypeScript in-memory SQLite implementation with zero WASM/native dependencies",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -47,6 +47,11 @@
47
47
  "test": "bun test tests/contract tests/fuzz tests/harness",
48
48
  "test:contract": "bun test tests/contract",
49
49
  "test:fuzz": "bun test tests/fuzz",
50
+ "test:fuzz:soak": "SQLITE_MEM_MIXED_STEPS=${SQLITE_MEM_MIXED_STEPS:-48} SQLITE_MEM_STATEFUL_STEPS=${SQLITE_MEM_STATEFUL_STEPS:-48} SQLITE_MEM_FUZZ_RUNS=${SQLITE_MEM_FUZZ_RUNS:-40} bun test tests/fuzz/mixed-stateful.test.ts tests/fuzz/stateful.test.ts tests/fuzz/metamorphic tests/fuzz/robustness.test.ts tests/fuzz/sqllogictest.test.ts tests/fuzz/corpus.test.ts",
51
+ "test:metamorphic": "bun test tests/fuzz/metamorphic",
52
+ "test:sqllogictest": "bun test tests/fuzz/sqllogictest.test.ts",
53
+ "test:dst": "bun test tests/fuzz/stateful.test.ts tests/fuzz/mixed-stateful.test.ts tests/fuzz/corpus.test.ts",
54
+ "import:sqllogictest": "bun run scripts/import-sqllogictest.ts",
50
55
  "example": "bun run --cwd examples/react-vite dev",
51
56
  "benchmark": "bun run benchmarks/run.ts --tier default --engine mem",
52
57
  "benchmark:bun": "bun run benchmarks/run.ts --tier full --engine both",