@unicitylabs/sphere-sdk 0.7.1-dev.3 → 0.7.2
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 +5 -77
- package/dist/core/index.cjs +536 -26
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +113 -1
- package/dist/core/index.d.ts +113 -1
- package/dist/core/index.js +535 -26
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/browser/ipfs.cjs.map +1 -1
- package/dist/impl/browser/ipfs.js.map +1 -1
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +631 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +233 -1
- package/dist/index.d.ts +233 -1
- package/dist/index.js +615 -26
- package/dist/index.js.map +1 -1
- package/dist/l1/index.cjs.map +1 -1
- package/dist/l1/index.js.map +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unicitylabs/sphere-sdk",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Modular TypeScript SDK for Unicity wallet operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"test:relay": "vitest run --config vitest.relay.config.ts",
|
|
103
103
|
"lint": "eslint . --ext .ts",
|
|
104
104
|
"typecheck": "tsc --noEmit",
|
|
105
|
-
"cli": "
|
|
105
|
+
"cli": "echo 'The CLI has moved to @unicity-sphere/cli — install it with: npm install -g @unicity-sphere/cli' && exit 1"
|
|
106
106
|
},
|
|
107
107
|
"keywords": [
|
|
108
108
|
"unicity",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"dependencies": {
|
|
122
122
|
"@noble/curves": "^2.0.1",
|
|
123
123
|
"@noble/hashes": "^2.0.1",
|
|
124
|
-
"@unicitylabs/nostr-js-sdk": "0.5.0
|
|
124
|
+
"@unicitylabs/nostr-js-sdk": "^0.5.0",
|
|
125
125
|
"@unicitylabs/state-transition-sdk": "1.6.1-rc.f37cb85",
|
|
126
126
|
"bip39": "^3.1.0",
|
|
127
127
|
"buffer": "^6.0.3",
|