forked from cerc-io/registry-sdk
Prathamesh Musale
3a828b47ae
Part of [Sumsub KYC integration in onboarding app](https://www.notion.so/Sumsub-KYC-integration-in-onboarding-app-607b598c9c1d4d12adc71725e2ab5e7e) Follows cerc-io/laconicd#43 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Reviewed-on: cerc-io/registry-sdk#15 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
73 lines
2.3 KiB
JSON
73 lines
2.3 KiB
JSON
{
|
|
"name": "@cerc-io/registry-sdk",
|
|
"version": "0.2.3",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": "git@github.com:cerc-io/registry-sdk.git",
|
|
"author": "",
|
|
"license": "UNLICENSED",
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/lodash": "^4.14.181",
|
|
"@types/semver": "^7.3.9",
|
|
"@types/tiny-secp256k1": "1.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.47.1",
|
|
"@typescript-eslint/parser": "^5.47.1",
|
|
"depcheck": "^1.4.7",
|
|
"dotenv": "^16.0.0",
|
|
"eslint": "^8.35.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"google-protobuf": "^3.21.0",
|
|
"husky": "^9.0.11",
|
|
"jest": "29.0.0",
|
|
"ts-jest": "^29.0.2",
|
|
"ts-proto": "1.121.6",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/amino": "^0.28.1",
|
|
"@cosmjs/crypto": "^0.28.1",
|
|
"@cosmjs/encoding": "^0.28.1",
|
|
"@cosmjs/launchpad": "^0.27.1",
|
|
"@cosmjs/proto-signing": "^0.32.2",
|
|
"@cosmjs/stargate": "^0.32.2",
|
|
"@cosmjs/tendermint-rpc": "^0.32.2",
|
|
"@ipld/dag-cbor": "^7.0.1",
|
|
"@ipld/dag-json": "^8.0.9",
|
|
"@metamask/eth-sig-util": "^4.0.0",
|
|
"@tharsis/address-converter": "^0.1.7",
|
|
"@tharsis/eip712": "^0.2.1",
|
|
"@tharsis/proto": "^0.1.16",
|
|
"@tharsis/provider": "^0.2.4",
|
|
"@tharsis/transactions": "^0.2.2",
|
|
"axios": "^0.26.1",
|
|
"bip32": "3.0.1",
|
|
"bip39": "^3.0.4",
|
|
"canonical-json": "^0.0.4",
|
|
"ethers": "^5.6.2",
|
|
"graphql.js": "^0.6.8",
|
|
"js-sha256": "^0.9.0",
|
|
"js-yaml": "^3.14.1",
|
|
"lodash": "^4.17.21",
|
|
"multiformats": "^9.5.4",
|
|
"node-yaml": "^4.0.1",
|
|
"secp256k1": "^4.0.1",
|
|
"semver": "^7.3.5",
|
|
"tiny-secp256k1": "^1.1.6"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --runInBand --verbose --testPathPattern=src",
|
|
"test:auctions": "TEST_AUCTIONS_ENABLED=1 jest --runInBand --verbose src/auction.test.ts",
|
|
"test:nameservice-expiry": "TEST_NAMESERVICE_EXPIRY=1 jest --runInBand --verbose src/nameservice-expiry.test.ts",
|
|
"test:onboarding": "ONBOARDING_ENABLED=1 jest --runInBand --verbose src/onboarding.test.ts",
|
|
"build": "tsc",
|
|
"lint": "eslint .",
|
|
"prepare": "husky"
|
|
}
|
|
}
|