@imtbl/sdk 2.0.0-alpha.9 → 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 +1 -1
- package/dist/index.browser.cdn.js +6969 -6893
- package/package.json +11 -10
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imtbl/sdk",
|
|
3
3
|
"description": "Immutable Typescript SDK",
|
|
4
|
-
"version": "2.0.0
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"author": "Immutable",
|
|
6
6
|
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@imtbl/blockchain-data": "2.0.0
|
|
9
|
-
"@imtbl/checkout-sdk": "2.0.0
|
|
10
|
-
"@imtbl/config": "2.0.0
|
|
11
|
-
"@imtbl/minting-backend": "2.0.0
|
|
12
|
-
"@imtbl/orderbook": "2.0.0
|
|
13
|
-
"@imtbl/passport": "2.0.0
|
|
14
|
-
"@imtbl/webhook": "2.0.0
|
|
15
|
-
"@imtbl/x-client": "2.0.0
|
|
16
|
-
"@imtbl/x-provider": "2.0.0
|
|
8
|
+
"@imtbl/blockchain-data": "2.0.0",
|
|
9
|
+
"@imtbl/checkout-sdk": "2.0.0",
|
|
10
|
+
"@imtbl/config": "2.0.0",
|
|
11
|
+
"@imtbl/minting-backend": "2.0.0",
|
|
12
|
+
"@imtbl/orderbook": "2.0.0",
|
|
13
|
+
"@imtbl/passport": "2.0.0",
|
|
14
|
+
"@imtbl/webhook": "2.0.0",
|
|
15
|
+
"@imtbl/x-client": "2.0.0",
|
|
16
|
+
"@imtbl/x-provider": "2.0.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"eslint": "^8.40.0",
|
|
@@ -166,6 +166,7 @@
|
|
|
166
166
|
"build": "pnpm transpile && pnpm typegen",
|
|
167
167
|
"transpile": "tsup --config ./tsup.config.js",
|
|
168
168
|
"typegen": "tsc --customConditions default --emitDeclarationOnly",
|
|
169
|
+
"pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
|
|
169
170
|
"lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
|
|
170
171
|
"typecheck": "tsc --customConditions default --noEmit --jsx preserve"
|
|
171
172
|
}
|