@supabase/lite 0.2.1-next.2 → 0.3.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/README.md +1 -2
- package/STATUS.md +7 -6
- package/dist/cli/index.js +144 -117
- package/dist/cli/lib.js +38 -32
- package/dist/db/postgres/{BasePostgresConnection-B7zHDAib.d.ts → BasePostgresConnection-Clykq58D.d.ts} +1 -1
- package/dist/db/postgres/PostgresConnection.d.ts +1 -1
- package/dist/db/postgres/PostgresConnection.js +21 -25
- package/dist/db/postgres/pglite/PgliteConnection.d.ts +1 -1
- package/dist/db/postgres/pglite/PgliteConnection.js +25 -27
- package/dist/index.js +33 -33
- package/package.json +3 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/lite",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
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
6
|
"bin": {
|
|
@@ -128,6 +128,7 @@
|
|
|
128
128
|
"dependencies": {
|
|
129
129
|
"commander": "^14.0.3",
|
|
130
130
|
"@commander-js/extra-typings": "^14.0.0",
|
|
131
|
+
"@electric-sql/pglite": "0.4.5",
|
|
131
132
|
"@hono/node-server": "^1.19.9",
|
|
132
133
|
"@supabase/pg-delta": "1.0.0-alpha.10",
|
|
133
134
|
"@sentry/node": "^10.51.0",
|
|
@@ -145,17 +146,13 @@
|
|
|
145
146
|
},
|
|
146
147
|
"peerDependencies": {
|
|
147
148
|
"@supabase/supabase-js": ">=2.90.0",
|
|
148
|
-
"@electric-sql/pglite": "0.4.5",
|
|
149
149
|
"postgres": "^3.4.8",
|
|
150
|
-
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
150
|
+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
151
151
|
},
|
|
152
152
|
"peerDependenciesMeta": {
|
|
153
153
|
"vite": {
|
|
154
154
|
"optional": true
|
|
155
155
|
},
|
|
156
|
-
"@electric-sql/pglite": {
|
|
157
|
-
"optional": true
|
|
158
|
-
},
|
|
159
156
|
"postgres": {
|
|
160
157
|
"optional": true
|
|
161
158
|
}
|
|
@@ -170,7 +167,6 @@
|
|
|
170
167
|
"@sqlite.org/sqlite-wasm": "^3.51.2-build7",
|
|
171
168
|
"@supabase/supabase-js": "^2.97.0",
|
|
172
169
|
"@types/bcryptjs": "^3.0.0",
|
|
173
|
-
"@electric-sql/pglite": "0.4.5",
|
|
174
170
|
"aws4fetch": "^1.0.20",
|
|
175
171
|
"bun-plugin-tailwind": "^0.1.2",
|
|
176
172
|
"dedent": "^1.7.2",
|