@unicitylabs/sphere-sdk 0.5.2 → 0.5.4
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 -0
- package/dist/connect/index.cjs +18 -2
- package/dist/connect/index.cjs.map +1 -1
- package/dist/connect/index.d.cts +15 -2
- package/dist/connect/index.d.ts +15 -2
- package/dist/connect/index.js +18 -2
- package/dist/connect/index.js.map +1 -1
- package/dist/core/index.cjs +54 -2
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +8 -0
- package/dist/core/index.d.ts +8 -0
- package/dist/core/index.js +54 -2
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/connect/index.cjs +119 -1
- package/dist/impl/browser/connect/index.cjs.map +1 -1
- package/dist/impl/browser/connect/index.d.cts +53 -1
- package/dist/impl/browser/connect/index.d.ts +53 -1
- package/dist/impl/browser/connect/index.js +119 -1
- package/dist/impl/browser/connect/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +6 -1
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +6 -1
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/browser/ipfs.cjs +6 -1
- package/dist/impl/browser/ipfs.cjs.map +1 -1
- package/dist/impl/browser/ipfs.js +6 -1
- package/dist/impl/browser/ipfs.js.map +1 -1
- package/dist/impl/nodejs/connect/index.cjs.map +1 -1
- package/dist/impl/nodejs/connect/index.d.cts +2 -0
- package/dist/impl/nodejs/connect/index.d.ts +2 -0
- package/dist/impl/nodejs/connect/index.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +6 -1
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.d.cts +1 -0
- package/dist/impl/nodejs/index.d.ts +1 -0
- package/dist/impl/nodejs/index.js +6 -1
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +54 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +54 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unicitylabs/sphere-sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Modular TypeScript SDK for Unicity wallet operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -129,11 +129,8 @@
|
|
|
129
129
|
"elliptic": "^6.6.1"
|
|
130
130
|
},
|
|
131
131
|
"optionalDependencies": {
|
|
132
|
-
"@helia/ipns": "^9.1.3",
|
|
133
|
-
"@helia/json": "^5.0.3",
|
|
134
132
|
"@libp2p/crypto": "^5.1.13",
|
|
135
133
|
"@libp2p/peer-id": "^6.0.4",
|
|
136
|
-
"helia": "^6.0.11",
|
|
137
134
|
"ipns": "^10.0.0",
|
|
138
135
|
"multiformats": "^13.4.2"
|
|
139
136
|
},
|
|
@@ -159,11 +156,8 @@
|
|
|
159
156
|
"vitest": "^2.0.0"
|
|
160
157
|
},
|
|
161
158
|
"peerDependencies": {
|
|
162
|
-
"@helia/ipns": ">=9.0.0",
|
|
163
|
-
"@helia/json": ">=5.0.0",
|
|
164
159
|
"@libp2p/crypto": ">=5.0.0",
|
|
165
160
|
"@libp2p/peer-id": ">=6.0.0",
|
|
166
|
-
"helia": ">=6.0.0",
|
|
167
161
|
"ipns": ">=10.0.0",
|
|
168
162
|
"multiformats": ">=13.0.0",
|
|
169
163
|
"ws": ">=8.0.0"
|
|
@@ -172,21 +166,12 @@
|
|
|
172
166
|
"ws": {
|
|
173
167
|
"optional": true
|
|
174
168
|
},
|
|
175
|
-
"@helia/ipns": {
|
|
176
|
-
"optional": true
|
|
177
|
-
},
|
|
178
|
-
"@helia/json": {
|
|
179
|
-
"optional": true
|
|
180
|
-
},
|
|
181
169
|
"@libp2p/crypto": {
|
|
182
170
|
"optional": true
|
|
183
171
|
},
|
|
184
172
|
"@libp2p/peer-id": {
|
|
185
173
|
"optional": true
|
|
186
174
|
},
|
|
187
|
-
"helia": {
|
|
188
|
-
"optional": true
|
|
189
|
-
},
|
|
190
175
|
"ipns": {
|
|
191
176
|
"optional": true
|
|
192
177
|
},
|