@supabase/lite 0.0.1-next.2 → 0.0.1-next.4
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 +17 -17
- package/STATUS.md +844 -0
- package/UPGRADE.md +221 -0
- package/dist/cli/index.js +362 -30854
- package/dist/cli/lib.js +78 -18528
- package/dist/db/browser/index.js +50 -15915
- package/dist/db/bun/index.js +50 -15903
- package/dist/db/fallback.js +49 -15799
- package/dist/db/node/index.js +50 -15896
- package/dist/db/postgres/PostgresConnection.js +18 -365
- package/dist/db/postgres/pglite/PgliteConnection.js +20 -642
- package/dist/db/workerd/index.js +49 -16021
- package/dist/index.js +289 -32244
- package/dist/vite/index.js +3 -1910
- package/package.json +4 -7
package/package.json
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/lite",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.4",
|
|
4
4
|
"description": "Lightweight TypeScript-native Supabase implementation on SQLite (alpha). PostgREST + GoTrue compatible — use @supabase/supabase-js as-is.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/supabase/lite.git",
|
|
9
|
-
"directory": "app"
|
|
10
|
-
},
|
|
11
6
|
"bin": {
|
|
12
7
|
"lite": "./dist/cli/index.js"
|
|
13
8
|
},
|
|
@@ -69,6 +64,8 @@
|
|
|
69
64
|
"files": [
|
|
70
65
|
"dist",
|
|
71
66
|
"README.md",
|
|
67
|
+
"STATUS.md",
|
|
68
|
+
"UPGRADE.md",
|
|
72
69
|
"!dist/*.tsbuildinfo",
|
|
73
70
|
"!dist/*.map",
|
|
74
71
|
"!dist/**/*.map",
|
|
@@ -111,7 +108,7 @@
|
|
|
111
108
|
"dev": "vite",
|
|
112
109
|
"typecheck": "tsc --project tsconfig.check.json",
|
|
113
110
|
"build": "bun run build.ts",
|
|
114
|
-
"build:all": "bun run build:static && bun run build.ts --types",
|
|
111
|
+
"build:all": "bun run build:static && bun run build.ts --types --minify",
|
|
115
112
|
"build:static": "vite build",
|
|
116
113
|
"watch:static": "vite build --watch",
|
|
117
114
|
"dev:bun": "bun run --hot dev/bun/bun.dev.ts",
|