@turnkey/crypto
Version:
Encryption, decryption, and key related utility functions
62 lines • 1.42 kB
JSON
{
"name": "@turnkey/crypto",
"version": "2.10.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/"
},
"homepage": "https://github.com/tkhq/sdk",
"bugs": {
"url": "https://github.com/tkhq/sdk/issues"
},
"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",
"@peculiar/x509": "1.12.3",
"borsh": "2.0.0",
"cbor-js": "0.1.0",
"@turnkey/encoding": "0.6.0",
"@turnkey/sdk-types": "1.1.0"
},
"devDependencies": {
"@types/cbor-js": "^0.1.1",
"@types/jest": "^29.5.3",
"jest": "29.7.0"
},
"scripts": {
"build": "rollup -c",
"clean": "rimraf ./dist ./.cache",
"test": "jest",
"typecheck": "tsc --noEmit"
}
}