@obolnetwork/obol-sdk 2.11.5-rc.0 → 2.11.5-rc.1
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 +33 -0
- package/dist/browser/src/index.js +18280 -0
- package/dist/browser/src/index.js.map +1 -0
- package/dist/cjs/src/index.js +20 -7
- package/dist/cjs/src/index.js.map +1 -1
- package/dist/esm/src/index.js +20 -7
- package/dist/esm/src/index.js.map +1 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +20 -7
- package/dist/types/src/verification/termsAndConditions.d.ts +0 -1
package/dist/cjs/src/index.js
CHANGED
|
@@ -171,7 +171,7 @@ var import_uuid = require("uuid");
|
|
|
171
171
|
// package.json
|
|
172
172
|
var package_default = {
|
|
173
173
|
name: "@obolnetwork/obol-sdk",
|
|
174
|
-
version: "2.11.5-rc.
|
|
174
|
+
version: "2.11.5-rc.1",
|
|
175
175
|
description: "A package for creating Distributed Validators using the Obol API.",
|
|
176
176
|
bugs: {
|
|
177
177
|
url: "https://github.com/obolnetwork/obol-sdk/issues"
|
|
@@ -192,15 +192,30 @@ var package_default = {
|
|
|
192
192
|
"npm:publish:next": "npm publish --tag next",
|
|
193
193
|
release: "release-it",
|
|
194
194
|
"release:dry": "release-it --dry-run --no-npm",
|
|
195
|
-
lint: 'eslint "{src
|
|
196
|
-
"lint-ci":
|
|
197
|
-
"prettier-ci":
|
|
198
|
-
prettier: 'prettier --write "{src
|
|
195
|
+
lint: 'eslint "{src}/**/*.{js,ts}" --fix',
|
|
196
|
+
"lint-ci": "eslint ./src --ext .ts,.js",
|
|
197
|
+
"prettier-ci": "prettier --check ./src --ext .ts,.js",
|
|
198
|
+
prettier: 'prettier --write "{src}/**/*.{js,ts}"',
|
|
199
199
|
docs: "typedoc"
|
|
200
200
|
},
|
|
201
201
|
main: "./dist/cjs/src/index.js",
|
|
202
202
|
module: "./dist/esm/src/index.js",
|
|
203
|
+
browser: "./dist/browser/src/index.js",
|
|
203
204
|
typings: "./dist/types/src/index.d.ts",
|
|
205
|
+
exports: {
|
|
206
|
+
".": {
|
|
207
|
+
types: "./dist/types/src/index.d.ts",
|
|
208
|
+
browser: {
|
|
209
|
+
import: "./dist/browser/src/index.js",
|
|
210
|
+
default: "./dist/browser/src/index.js"
|
|
211
|
+
},
|
|
212
|
+
node: {
|
|
213
|
+
import: "./dist/esm/src/index.js",
|
|
214
|
+
require: "./dist/cjs/src/index.js"
|
|
215
|
+
},
|
|
216
|
+
default: "./dist/esm/src/index.js"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
204
219
|
author: "Obol Labs (https://obol.org)",
|
|
205
220
|
repository: {
|
|
206
221
|
type: "git",
|
|
@@ -226,7 +241,6 @@ var package_default = {
|
|
|
226
241
|
dotenv: "^17.2.2",
|
|
227
242
|
elliptic: "^6.6.1",
|
|
228
243
|
ethers: "^6.15.0",
|
|
229
|
-
"pdf-parse-debugging-disabled": "^1.1.1",
|
|
230
244
|
semver: "^7.7.2",
|
|
231
245
|
uuid: "^9.0.0"
|
|
232
246
|
},
|
|
@@ -235,7 +249,6 @@ var package_default = {
|
|
|
235
249
|
"@types/elliptic": "^6.4.18",
|
|
236
250
|
"@types/jest": "^29.5.12",
|
|
237
251
|
"@types/node": "^24.5.2",
|
|
238
|
-
"@types/pdf-parse": "^1.1.5",
|
|
239
252
|
"@types/semver": "^7.7.1",
|
|
240
253
|
"@types/uuid": "^9.0.1",
|
|
241
254
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|