@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/esm/src/index.js
CHANGED
|
@@ -89,7 +89,7 @@ import { v4 as uuidv4 } from "uuid";
|
|
|
89
89
|
// package.json
|
|
90
90
|
var package_default = {
|
|
91
91
|
name: "@obolnetwork/obol-sdk",
|
|
92
|
-
version: "2.11.5-rc.
|
|
92
|
+
version: "2.11.5-rc.1",
|
|
93
93
|
description: "A package for creating Distributed Validators using the Obol API.",
|
|
94
94
|
bugs: {
|
|
95
95
|
url: "https://github.com/obolnetwork/obol-sdk/issues"
|
|
@@ -110,15 +110,30 @@ var package_default = {
|
|
|
110
110
|
"npm:publish:next": "npm publish --tag next",
|
|
111
111
|
release: "release-it",
|
|
112
112
|
"release:dry": "release-it --dry-run --no-npm",
|
|
113
|
-
lint: 'eslint "{src
|
|
114
|
-
"lint-ci":
|
|
115
|
-
"prettier-ci":
|
|
116
|
-
prettier: 'prettier --write "{src
|
|
113
|
+
lint: 'eslint "{src}/**/*.{js,ts}" --fix',
|
|
114
|
+
"lint-ci": "eslint ./src --ext .ts,.js",
|
|
115
|
+
"prettier-ci": "prettier --check ./src --ext .ts,.js",
|
|
116
|
+
prettier: 'prettier --write "{src}/**/*.{js,ts}"',
|
|
117
117
|
docs: "typedoc"
|
|
118
118
|
},
|
|
119
119
|
main: "./dist/cjs/src/index.js",
|
|
120
120
|
module: "./dist/esm/src/index.js",
|
|
121
|
+
browser: "./dist/browser/src/index.js",
|
|
121
122
|
typings: "./dist/types/src/index.d.ts",
|
|
123
|
+
exports: {
|
|
124
|
+
".": {
|
|
125
|
+
types: "./dist/types/src/index.d.ts",
|
|
126
|
+
browser: {
|
|
127
|
+
import: "./dist/browser/src/index.js",
|
|
128
|
+
default: "./dist/browser/src/index.js"
|
|
129
|
+
},
|
|
130
|
+
node: {
|
|
131
|
+
import: "./dist/esm/src/index.js",
|
|
132
|
+
require: "./dist/cjs/src/index.js"
|
|
133
|
+
},
|
|
134
|
+
default: "./dist/esm/src/index.js"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
122
137
|
author: "Obol Labs (https://obol.org)",
|
|
123
138
|
repository: {
|
|
124
139
|
type: "git",
|
|
@@ -144,7 +159,6 @@ var package_default = {
|
|
|
144
159
|
dotenv: "^17.2.2",
|
|
145
160
|
elliptic: "^6.6.1",
|
|
146
161
|
ethers: "^6.15.0",
|
|
147
|
-
"pdf-parse-debugging-disabled": "^1.1.1",
|
|
148
162
|
semver: "^7.7.2",
|
|
149
163
|
uuid: "^9.0.0"
|
|
150
164
|
},
|
|
@@ -153,7 +167,6 @@ var package_default = {
|
|
|
153
167
|
"@types/elliptic": "^6.4.18",
|
|
154
168
|
"@types/jest": "^29.5.12",
|
|
155
169
|
"@types/node": "^24.5.2",
|
|
156
|
-
"@types/pdf-parse": "^1.1.5",
|
|
157
170
|
"@types/semver": "^7.7.1",
|
|
158
171
|
"@types/uuid": "^9.0.1",
|
|
159
172
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|