@crvouga/sqlite-mem 0.2.0 → 1.1.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": "0.2.0",
3
+ "version": "1.1.0",
4
4
  "description": "Pure TypeScript in-memory SQLite implementation with zero WASM/native dependencies",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -13,6 +13,11 @@
13
13
  "types": "./dist/index.d.ts",
14
14
  "import": "./dist/index.js",
15
15
  "default": "./dist/index.js"
16
+ },
17
+ "./unstable": {
18
+ "types": "./dist/unstable.d.ts",
19
+ "import": "./dist/unstable.js",
20
+ "default": "./dist/unstable.js"
16
21
  }
17
22
  },
18
23
  "files": [
@@ -43,13 +48,11 @@
43
48
  "test:contract": "bun test tests/contract",
44
49
  "test:fuzz": "bun test tests/fuzz",
45
50
  "example": "bun run --cwd examples/react-vite dev",
46
- "test:browser": "bun run tests/browser/run.ts",
47
51
  "benchmark": "bun run benchmarks/run.ts --tier default --engine mem",
48
52
  "benchmark:bun": "bun run benchmarks/run.ts --tier full --engine both",
49
53
  "benchmark:compare": "bun run benchmarks/run.ts --tier default --engine compare --grep compare/ --out benchmarks/results/compare-js.json",
50
54
  "benchmark:compare-js": "bun run benchmarks/run.ts --tier default --engine compare-js --grep compare/js/ --out benchmarks/results/compare-js-only.json",
51
55
  "benchmark:compare-sqlite": "bun run benchmarks/run.ts --tier default --engine compare-sqlite --grep compare/sqlite/ --out benchmarks/results/compare-sqlite.json",
52
- "benchmark:browser": "bun run benchmarks/browser/run.ts --tier ci --mobile-tier ci",
53
56
  "benchmark:ci": "bun run benchmarks/run.ts --tier ci --engine mem --out benchmarks/results/ci-latest.json && bun run benchmarks/compare-ci.ts",
54
57
  "benchmark:bundle": "bun run build && bun run benchmarks/bundle.ts",
55
58
  "benchmark:report": "bun run benchmarks/report-html.ts",
@@ -93,7 +96,6 @@
93
96
  "esbuild": "^0.28.2",
94
97
  "fast-check": "^4.1.1",
95
98
  "husky": "^9.1.7",
96
- "playwright": "^1.52.0",
97
99
  "publint": "^0.3.23",
98
100
  "semantic-release": "^25.0.9",
99
101
  "sql.js": "^1.14.2",