UNPKG

@0xsequence/google-kms-signer

Version:

an ethers.js- and sequence.js-compatible signer using Google Cloud Key Management Service keys

63 lines 2.06 kB
{ "name": "@0xsequence/google-kms-signer", "version": "0.3.0", "description": "an ethers.js- and sequence.js-compatible signer using Google Cloud Key Management Service keys", "main": "dist/index.js", "keywords": [ "sequence", "sequence.js", "0xsequence", "google", "kms", "signer", "ethers", "ethers.js" ], "author": "Horizon Blockchain Games Inc.", "license": "Apache-2.0", "devDependencies": { "@0xsequence/auth": "^2.2.11", "@0xsequence/provider": "^2.2.13", "@0xsequence/tests": "^2.2.11", "@types/chai": "^4.3.11", "@types/chai-as-promised": "^7.1.8", "@types/mocha": "^10.0.6", "@typescript-eslint/eslint-plugin": "^6.16.0", "chai": "4", "chai-as-promised": "^7.1.1", "concurrently": "^8.2.2", "dotenv": "^16.3.1", "esbuild": "^0.19.11", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "ethers": "^6", "hardhat": "^2.19.4", "mocha": "^10.2.0", "prettier": "^3.1.1", "tsx": "^4.7.0", "typescript": "^5.3.3", "wait-on": "^7.2.0" }, "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/properties": "^5.7.0", "@ethersproject/signing-key": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@google-cloud/kms": "^4.0.1", "@peculiar/asn1-ecc": "^2.3.15", "@peculiar/asn1-schema": "^2.3.15", "@peculiar/asn1-x509": "^2.3.15", "asn1js": "^3.0.5", "pkijs": "^3.0.15" }, "peerDependencies": { "ethers": "^6.13.5" }, "scripts": { "build": "rm -f dist/*.d.ts && tsc --declaration --declarationMap --emitDeclarationOnly --declarationDir dist && esbuild index.ts --outdir=dist --bundle --minify --sourcemap --platform=node", "format": "prettier --write \"**/*.ts\"", "lint": "eslint --config .eslintrc.cjs --fix \"**/*.ts\"", "test": "NODE_OPTIONS='--import tsx' concurrently --kill-others --success first --hide 0 \"hardhat node\" \"wait-on http://127.0.0.1:8545 && mocha --extension ts\"" } }