Moved fetching to simple-typed-fetch

This commit is contained in:
Aleksandr Kraiz
2023-03-24 21:59:04 +04:00
parent 07f947eb35
commit 51257adcd4
22 changed files with 256 additions and 653 deletions

View File

@@ -1,10 +1,13 @@
{
"name": "@orionprotocol/sdk",
"version": "0.17.37",
"version": "0.17.38",
"description": "Orion Protocol SDK",
"main": "./lib/esm/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "npm run build && node lib/esm/index.js",
"develop": "concurrently -i -k -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"",
@@ -39,17 +42,17 @@
"url": "https://github.com/orionprotocol/sdk/issues"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@tsconfig/strictest": "^1.0.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.6",
"@types/node-fetch": "^2.6.2",
"@types/socket.io-client": "1.4.33",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@babel/core": "^7.21.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-loader": "^9.1.2",
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
@@ -65,8 +68,8 @@
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"dependencies": {
@@ -74,24 +77,24 @@
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@lukeed/csprng": "^1.0.1",
"@orionprotocol/contracts": "0.4.0",
"@orionprotocol/contracts": "0.5.0",
"bignumber.js": "^9.1.1",
"bson-objectid": "^2.0.4",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"ethers": "^5.6.2",
"express": "^4.18.2",
"isomorphic-unfetch": "^3.1.0",
"isomorphic-ws": "^5.0.0",
"just-clone": "^6.2.0",
"merge-anything": "^5.1.4",
"neverthrow": "^6.0.0",
"simple-typed-fetch": "^0.1.4",
"stream-browserify": "^3.0.0",
"tiny-invariant": "^1.3.1",
"ts-is-present": "^1.2.2",
"ts-node": "^10.9.1",
"uuid": "^9.0.0",
"ws": "^8.12.1",
"ws": "^8.13.0",
"zod": "3.21.4"
},
"homepage": "https://github.com/orionprotocol/sdk#readme",