@powerhousedao/reactor-browser 3.3.0-dev.2 → 3.3.0-dev.3
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/dist/package.json +13 -5
- package/dist/src/global/types.d.ts +7 -0
- package/dist/src/global/types.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/operational/hooks/index.d.ts +3 -0
- package/dist/src/operational/hooks/index.d.ts.map +1 -0
- package/dist/src/operational/hooks/index.js +3 -0
- package/dist/src/operational/hooks/index.js.map +1 -0
- package/dist/src/operational/hooks/useOperationalQuery.d.ts +12 -0
- package/dist/src/operational/hooks/useOperationalQuery.d.ts.map +1 -0
- package/dist/src/operational/hooks/useOperationalQuery.js +27 -0
- package/dist/src/operational/hooks/useOperationalQuery.js.map +1 -0
- package/dist/src/operational/hooks/useOperationalStore.d.ts +12 -0
- package/dist/src/operational/hooks/useOperationalStore.d.ts.map +1 -0
- package/dist/src/operational/hooks/useOperationalStore.js +33 -0
- package/dist/src/operational/hooks/useOperationalStore.js.map +1 -0
- package/dist/src/operational/index.d.ts +3 -0
- package/dist/src/operational/index.d.ts.map +1 -0
- package/dist/src/operational/index.js +3 -0
- package/dist/src/operational/index.js.map +1 -0
- package/dist/src/operational/utils/createTypedQuery.d.ts +16 -0
- package/dist/src/operational/utils/createTypedQuery.d.ts.map +1 -0
- package/dist/src/operational/utils/createTypedQuery.js +24 -0
- package/dist/src/operational/utils/createTypedQuery.js.map +1 -0
- package/dist/src/operational/utils/index.d.ts +2 -0
- package/dist/src/operational/utils/index.d.ts.map +1 -0
- package/dist/src/operational/utils/index.js +2 -0
- package/dist/src/operational/utils/index.js.map +1 -0
- package/dist/src/pglite/hooks/index.d.ts +2 -0
- package/dist/src/pglite/hooks/index.d.ts.map +1 -0
- package/dist/src/pglite/hooks/index.js +2 -0
- package/dist/src/pglite/hooks/index.js.map +1 -0
- package/dist/src/pglite/hooks/usePGlite.d.ts +11 -0
- package/dist/src/pglite/hooks/usePGlite.d.ts.map +1 -0
- package/dist/src/pglite/hooks/usePGlite.js +37 -0
- package/dist/src/pglite/hooks/usePGlite.js.map +1 -0
- package/dist/src/pglite/index.d.ts +6 -0
- package/dist/src/pglite/index.d.ts.map +1 -0
- package/dist/src/pglite/index.js +6 -0
- package/dist/src/pglite/index.js.map +1 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +15 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/reactor-browser",
|
|
3
|
-
"version": "3.3.0-dev.
|
|
3
|
+
"version": "3.3.0-dev.3",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -18,38 +18,46 @@
|
|
|
18
18
|
"exports": {
|
|
19
19
|
".": "./dist/src/index.js",
|
|
20
20
|
"./analytics": "./dist/src/analytics/analytics.js",
|
|
21
|
+
"./pglite": "./dist/src/pglite/index.js",
|
|
22
|
+
"./operational": "./dist/src/operational/index.js",
|
|
21
23
|
"./*": "./dist/src/*.js"
|
|
22
24
|
},
|
|
23
25
|
"devDependencies": {
|
|
26
|
+
"@types/lodash.isequal": "^4.5.8",
|
|
24
27
|
"@types/luxon": "^3.6.2",
|
|
25
28
|
"@types/react": "^18.3.1",
|
|
26
29
|
"@types/react-dom": "^18.3.1",
|
|
27
30
|
"@vitejs/plugin-react": "^4.4.1",
|
|
28
31
|
"@vitest/browser": "^3.1.2",
|
|
32
|
+
"jotai": "^2.10.3",
|
|
29
33
|
"playwright": "^1.51.1",
|
|
30
34
|
"react": "^18.3.1",
|
|
31
35
|
"react-dom": "^18.3.1",
|
|
32
36
|
"vite-plugin-node-polyfills": "^0.23.0",
|
|
33
37
|
"vitest": "^3.1.2",
|
|
34
|
-
"vitest-browser-react": "^0.2.0"
|
|
35
|
-
"jotai": "^2.10.3"
|
|
38
|
+
"vitest-browser-react": "^0.2.0"
|
|
36
39
|
},
|
|
37
40
|
"peerDependencies": {
|
|
41
|
+
"jotai": "^2.10.3",
|
|
38
42
|
"react": "^18.3.1",
|
|
39
|
-
"react-dom": "^18.3.1"
|
|
40
|
-
"jotai": "^2.10.3"
|
|
43
|
+
"react-dom": "^18.3.1"
|
|
41
44
|
},
|
|
42
45
|
"dependencies": {
|
|
46
|
+
"@electric-sql/pglite": "^0.2.17",
|
|
47
|
+
"@electric-sql/pglite-react": "^0.2.17",
|
|
43
48
|
"@powerhousedao/analytics-engine-browser": "^0.6.0",
|
|
44
49
|
"@powerhousedao/analytics-engine-core": "^0.5.0",
|
|
45
50
|
"@powerhousedao/analytics-engine-knex": "^0.6.0",
|
|
46
51
|
"@tanstack/react-query": "^5.49.2",
|
|
47
52
|
"change-case": "^5.4.4",
|
|
48
53
|
"did-key-creator": "^1.2.0",
|
|
54
|
+
"kysely": "^0.28.2",
|
|
55
|
+
"kysely-pglite-dialect": "^1.1.1",
|
|
56
|
+
"lodash.isequal": "^4.5.0",
|
|
49
57
|
"luxon": "^3.6.1",
|
|
50
58
|
"lz-string": "^1.5.0",
|
|
51
|
-
"document-drive": "3.3.0-dev.
|
|
52
|
-
"document-model": "3.3.0-dev.
|
|
59
|
+
"document-drive": "3.3.0-dev.3",
|
|
60
|
+
"document-model": "3.3.0-dev.3"
|
|
53
61
|
},
|
|
54
62
|
"scripts": {
|
|
55
63
|
"build:tsc": "tsc --build",
|