@worldcoin/minikit-js 2.0.0-dev.0 → 2.0.0
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 +4 -1
- package/build/chunk-6SCI6OTQ.js +272 -0
- package/build/{chunk-LHHKY77D.js → chunk-IYL4VCWR.js} +7 -40
- package/build/chunk-QOFVDR5F.js +279 -0
- package/build/{chunk-OTAA7OOI.js → chunk-QOLIACKU.js} +30 -269
- package/build/{chunk-DIACPBCB.js → chunk-XHYUUG6Y.js} +248 -301
- package/build/command-exports.cjs +238 -297
- package/build/command-exports.d.cts +14 -11
- package/build/command-exports.d.ts +14 -11
- package/build/command-exports.js +10 -2
- package/build/connector/index.cjs +339 -122
- package/build/connector/index.js +9 -5
- package/build/index.cjs +250 -309
- package/build/index.d.cts +16 -7
- package/build/index.d.ts +16 -7
- package/build/index.js +6 -4
- package/build/minikit-provider.cjs +318 -125
- package/build/minikit-provider.js +9 -2040
- package/build/siwe-exports.cjs +6 -38
- package/build/siwe-exports.d.cts +1 -1
- package/build/siwe-exports.d.ts +1 -1
- package/build/siwe-exports.js +1 -1
- package/build/{types-DO2UGrgp.d.cts → types-CC2x79HX.d.ts} +125 -38
- package/build/{types-CKn5C-Ro.d.cts → types-CSyzFDPt.d.cts} +4 -1
- package/build/{types-CKn5C-Ro.d.ts → types-CSyzFDPt.d.ts} +4 -1
- package/build/{types-CGVVuGiN.d.ts → types-_jfLbcJW.d.cts} +125 -38
- package/package.json +12 -13
package/package.json
CHANGED
|
@@ -119,25 +119,17 @@
|
|
|
119
119
|
"wagmi": "^3.0.0"
|
|
120
120
|
},
|
|
121
121
|
"peerDependenciesMeta": {
|
|
122
|
-
"
|
|
122
|
+
"siwe": {
|
|
123
123
|
"optional": true
|
|
124
124
|
},
|
|
125
|
-
"
|
|
125
|
+
"viem": {
|
|
126
126
|
"optional": true
|
|
127
127
|
},
|
|
128
|
-
"
|
|
128
|
+
"wagmi": {
|
|
129
129
|
"optional": true
|
|
130
130
|
}
|
|
131
131
|
},
|
|
132
132
|
"private": false,
|
|
133
|
-
"scripts": {
|
|
134
|
-
"build": "tsup",
|
|
135
|
-
"dev": "tsup --watch",
|
|
136
|
-
"lint": "prettier --check . --ignore-path ../../.prettierignore",
|
|
137
|
-
"prepublishOnly": "npm run build",
|
|
138
|
-
"test": "jest",
|
|
139
|
-
"type-check": "tsc --noEmit"
|
|
140
|
-
},
|
|
141
133
|
"type": "module",
|
|
142
134
|
"types": "./build/index.d.ts",
|
|
143
135
|
"typesVersions": {
|
|
@@ -148,5 +140,12 @@
|
|
|
148
140
|
]
|
|
149
141
|
}
|
|
150
142
|
},
|
|
151
|
-
"version": "2.0.0
|
|
152
|
-
|
|
143
|
+
"version": "2.0.0",
|
|
144
|
+
"scripts": {
|
|
145
|
+
"build": "tsup",
|
|
146
|
+
"dev": "tsup --watch",
|
|
147
|
+
"lint": "prettier --check . --ignore-path ../../.prettierignore",
|
|
148
|
+
"test": "jest",
|
|
149
|
+
"type-check": "tsc --noEmit"
|
|
150
|
+
}
|
|
151
|
+
}
|