@pol-studios/db 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 +2 -2
- package/dist/index.js +4824 -7073
- package/dist/index.js.map +1 -1
- package/dist/index.native.js +8258 -10507
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +4350 -6599
- package/dist/index.web.js.map +1 -1
- package/dist/parser/index.js +26 -26
- package/dist/parser/index.js.map +1 -1
- package/dist/query/index.js +6898 -9147
- package/dist/query/index.js.map +1 -1
- package/dist/realtime/index.js +7017 -9266
- package/dist/realtime/index.js.map +1 -1
- package/package.json +10 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pol-studios/db",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Database layer for React applications with Supabase and PowerSync support",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -96,12 +96,6 @@
|
|
|
96
96
|
"offline-first",
|
|
97
97
|
"sync"
|
|
98
98
|
],
|
|
99
|
-
"scripts": {
|
|
100
|
-
"build": "tsup",
|
|
101
|
-
"dev": "tsup --watch",
|
|
102
|
-
"typecheck": "tsc --noEmit",
|
|
103
|
-
"prepublishOnly": "pnpm build"
|
|
104
|
-
},
|
|
105
99
|
"peerDependencies": {
|
|
106
100
|
"@pol-studios/hooks": ">=1.0.0",
|
|
107
101
|
"@powersync/react-native": ">=1.0.0",
|
|
@@ -126,15 +120,20 @@
|
|
|
126
120
|
"@supabase/postgrest-js": "^2.87.1"
|
|
127
121
|
},
|
|
128
122
|
"devDependencies": {
|
|
129
|
-
"@pol-studios/hooks": "workspace:*",
|
|
130
|
-
"@pol-studios/utils": "workspace:*",
|
|
131
123
|
"@supabase-cache-helpers/postgrest-core": "^0.12.3",
|
|
132
124
|
"@supabase-cache-helpers/postgrest-react-query": "^1.0.0",
|
|
133
125
|
"@types/flat": "^5.0.5",
|
|
134
126
|
"tsup": "^8.0.0",
|
|
135
|
-
"typescript": "^5.0.0"
|
|
127
|
+
"typescript": "^5.0.0",
|
|
128
|
+
"@pol-studios/hooks": "1.0.6",
|
|
129
|
+
"@pol-studios/utils": "1.0.6"
|
|
136
130
|
},
|
|
137
131
|
"publishConfig": {
|
|
138
132
|
"access": "public"
|
|
133
|
+
},
|
|
134
|
+
"scripts": {
|
|
135
|
+
"build": "tsup",
|
|
136
|
+
"dev": "tsup --watch",
|
|
137
|
+
"typecheck": "tsc --noEmit"
|
|
139
138
|
}
|
|
140
|
-
}
|
|
139
|
+
}
|