@supanovaapp/sdk 0.2.0 → 0.2.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/README.md +115 -6
- package/dist/index.cjs.js +521 -519
- package/dist/index.d.ts +1459 -0
- package/dist/index.esm.js +58289 -52904
- package/package.json +10 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supanovaapp/sdk",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "React SDK for Supa Backend + Privy.io integration with Canton Network support",
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "React SDK for Supa Backend + Privy.io integration with Canton Network and EVM Smart Wallets support",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"dev": "vite",
|
|
20
|
-
"build": "
|
|
21
|
-
"build:prod": "
|
|
20
|
+
"build": "vite build",
|
|
21
|
+
"build:prod": "vite build --mode production",
|
|
22
22
|
"preview": "vite preview",
|
|
23
23
|
"type-check": "tsc --noEmit"
|
|
24
24
|
},
|
|
@@ -41,7 +41,10 @@
|
|
|
41
41
|
"@headlessui/react": "^2.2.0",
|
|
42
42
|
"@privy-io/react-auth": "^3.3.0",
|
|
43
43
|
"axios": "^1.7.9",
|
|
44
|
-
"buffer": "^6.0.3"
|
|
44
|
+
"buffer": "^6.0.3",
|
|
45
|
+
"ox": "^0.8.0",
|
|
46
|
+
"permissionless": "^0.2.24",
|
|
47
|
+
"viem": "^2.21.54"
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
47
50
|
"@types/node": "^22.10.2",
|
|
@@ -49,6 +52,7 @@
|
|
|
49
52
|
"@types/react-dom": "^19.0.2",
|
|
50
53
|
"@vitejs/plugin-react": "^5.0.4",
|
|
51
54
|
"typescript": "^5.9.3",
|
|
52
|
-
"vite": "^7.1.11"
|
|
55
|
+
"vite": "^7.1.11",
|
|
56
|
+
"vite-plugin-dts": "^4.5.4"
|
|
53
57
|
}
|
|
54
58
|
}
|