@reverbia/sdk 1.0.0-next.20251212012743 → 1.0.0-next.20251215143604
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/expo/index.cjs +1661 -20
- package/dist/expo/index.d.mts +748 -1
- package/dist/expo/index.d.ts +748 -1
- package/dist/expo/index.mjs +1641 -10
- package/dist/next/index.d.mts +2 -0
- package/dist/next/index.d.ts +2 -0
- package/dist/react/index.cjs +1377 -418
- package/dist/react/index.d.mts +702 -47
- package/dist/react/index.d.ts +702 -47
- package/dist/react/index.mjs +1348 -398
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reverbia/sdk",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.20251215143604",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"test": "vitest run",
|
|
57
57
|
"build": "tsup",
|
|
58
58
|
"prepublishOnly": "pnpm build",
|
|
59
|
-
"docs": "typedoc
|
|
59
|
+
"docs": "typedoc",
|
|
60
60
|
"generate": "pnpm run spec && pnpm run docs"
|
|
61
61
|
},
|
|
62
62
|
"repository": {
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@hey-api/openapi-ts": "0.87.2",
|
|
82
|
+
"@nozbe/watermelondb": "^0.28.0",
|
|
82
83
|
"@privy-io/react-auth": "^3.7.0",
|
|
83
84
|
"@testing-library/react": "^16.3.0",
|
|
84
85
|
"@types/react": "^19.2.6",
|
|
@@ -93,13 +94,16 @@
|
|
|
93
94
|
"vitest": "^4.0.14"
|
|
94
95
|
},
|
|
95
96
|
"peerDependencies": {
|
|
97
|
+
"@nozbe/watermelondb": "^0.28.0",
|
|
96
98
|
"@privy-io/react-auth": "^3.7.0",
|
|
97
|
-
"dexie": "^4.2.1",
|
|
98
99
|
"react": "^18.0.0 || ^19.0.0",
|
|
99
100
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
100
101
|
"react-native": ">=0.70.0"
|
|
101
102
|
},
|
|
102
103
|
"peerDependenciesMeta": {
|
|
104
|
+
"@nozbe/watermelondb": {
|
|
105
|
+
"optional": true
|
|
106
|
+
},
|
|
103
107
|
"react-dom": {
|
|
104
108
|
"optional": true
|
|
105
109
|
},
|
|
@@ -108,9 +112,6 @@
|
|
|
108
112
|
},
|
|
109
113
|
"@privy-io/react-auth": {
|
|
110
114
|
"optional": true
|
|
111
|
-
},
|
|
112
|
-
"dexie": {
|
|
113
|
-
"optional": true
|
|
114
115
|
}
|
|
115
116
|
},
|
|
116
117
|
"pnpm": {
|