web-sqlite-js 1.0.5 → 1.0.6
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/README.md +1 -1
- package/dist/index.js +5 -759
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-sqlite-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "web-sqlite-js is a friendly, out-of-the-box SQLite database for the web that makes persistent client-side storage simple for every developer.",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"docs"
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"http:docs": "tsx scripts/http-service.ts ./docs/.vitepress/dist --port 8399",
|
|
33
33
|
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
34
34
|
"test:debug": "vitest run --config vitest.e2e.config.ts --no-file-parallelism",
|
|
35
|
+
"prebuild": "gzip -c src/jswasm/sqlite3.wasm > src/jswasm/sqlite3.wasm.gz",
|
|
35
36
|
"build": "MINIFY=true vite build",
|
|
36
37
|
"build:dev": "SOURCE_MAP=true vite build",
|
|
37
38
|
"build:watch": "vite build --watch",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"http-server": "^14.1.1",
|
|
65
66
|
"jiti": "^2.6.1",
|
|
66
67
|
"playwright": "^1.57.0",
|
|
68
|
+
"terser": "^5.44.1",
|
|
67
69
|
"tsx": "^4.21.0",
|
|
68
70
|
"typescript": "^5.9.3",
|
|
69
71
|
"typescript-eslint": "^8.49.0",
|