@turnkey/crypto
Version:
Encryption, decryption, and key related utility functions
56 lines • 1.26 kB
JSON
{
"name": "@turnkey/crypto",
"version": "2.5.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"description": "Encryption, decryption, and key related utility functions",
"author": {
"name": "Turnkey",
"url": "https://turnkey.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkhq/sdk.git",
"directory": "packages/crypto"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@noble/ciphers": "1.3.0",
"@noble/curves": "1.9.0",
"@noble/hashes": "1.8.0",
"bs58check": "4.0.0",
"bs58": "6.0.0",
"@turnkey/encoding": "0.5.0"
},
"devDependencies": {
"jest": "29.7.0",
"@turnkey/api-key-stamper": "0.4.7",
"@turnkey/http": "3.7.0"
},
"scripts": {
"build": "rollup -c",
"clean": "rimraf ./dist ./.cache",
"test": "jest",
"typecheck": "tsc -p tsconfig.typecheck.json"
}
}