@vechain/sdk-aws-kms-adapter
Version:
This module implements the VeChain abstract signer so it is integrated with AWS KMS
50 lines • 2.08 kB
JSON
{
"name": "@vechain/sdk-aws-kms-adapter",
"version": "1.1.0",
"description": "This module implements the VeChain abstract signer so it is integrated with AWS KMS",
"author": "VeChain Foundation",
"license": "MIT",
"homepage": "https://github.com/vechain/vechain-sdk-js",
"repository": {
"type": "git",
"url": "github:vechain/vechain-sdk-js"
},
"keywords": [
"VeChain",
"AWS",
"KMS",
"adapter",
"signer"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf ./dist && tsup-node src/index.ts --format cjs,esm --dts",
"lint": "eslint",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"start-thor-solo": "echo 'Starting thor solo node ...' && docker compose -f ../../docker-compose.thor.yml -f ../../docker-compose.localstack.yml --profile thor-solo up -d --wait && echo '\nThor solo node and localstack started ...'",
"stop-thor-solo": "echo 'Stopping thor solo node ...' && docker compose -f ../../docker-compose.thor.yml -f ../../docker-compose.localstack.yml --profile thor-solo down && echo 'Thor solo node and localstack stopped ...'",
"test": "docker compose -f ../../docker-compose.localstack.yml up -d && sleep 10 && yarn test:all; ret=$?; docker compose -f ../../docker-compose.localstack.yml down; exit $ret",
"test:all": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit",
"test:integration": "(yarn start-thor-solo && yarn test:all && yarn stop-thor-solo) || yarn stop-thor-solo",
"test:unit": "rm -rf ./coverageUnit && UNIT=true jest --coverage --coverageDirectory=coverageUnit --group=unit"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.723.0",
"@noble/curves": "^1.6.0",
"@vechain/sdk-core": "1.1.0",
"@vechain/sdk-errors": "1.1.0",
"@vechain/sdk-network": "1.1.0",
"asn1js": "^3.0.5",
"ethers": "6.13.4",
"viem": "^2.21.45"
}
}