@toruslabs/eccrypto
Version:
JavaScript Elliptic curve cryptography library, includes fix to browser.js so that encrypt/decrypt works
69 lines (68 loc) • 1.88 kB
JSON
{
"name": "@toruslabs/eccrypto",
"version": "7.0.0",
"description": "JavaScript Elliptic curve cryptography library, includes fix to browser.js so that encrypt/decrypt works",
"main": "./dist/lib.cjs/index.js",
"module": "./dist/lib.esm/index.js",
"types": "./dist/lib.cjs/types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "torus-scripts build",
"lint": "torus-scripts lint --fix",
"release": "torus-scripts release",
"test:ci": "npm run test:node && npm run test:browsers",
"test:node": "vitest run --config test/configs/node.config.mts --coverage",
"test:browsers": "vitest run --config test/configs/browsers.config.mts --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/torusresearch/eccrypto.git"
},
"files": [
"dist"
],
"keywords": [
"ecc",
"ecdsa",
"ecdh",
"ecies",
"crypto",
"cryptography",
"secp256k1",
"K-256",
"elliptic",
"curve"
],
"author": "Torus Labs",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/torusresearch/eccrypto/issues"
},
"homepage": "https://github.com/torusresearch/eccrypto",
"devDependencies": {
"@babel/runtime": "^7.28.6",
"@toruslabs/config": "^4.0.0",
"@toruslabs/eslint-config-node": "^5.0.0",
"@toruslabs/eslint-config-typescript": "^5.0.0",
"@toruslabs/torus-scripts": "^8.0.0",
"@types/node": "^25.1.0",
"@vitest/browser-playwright": "^4.0.17",
"@vitest/coverage-istanbul": "^4.0.17",
"buffer": "^6.0.3",
"eccrypto-old": "npm:@toruslabs/eccrypto@6.2.0",
"eslint": "^9.39.2",
"playwright": "^1.57.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"overrides": {
"esbuild": "^0.25.0"
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"dependencies": {
"@noble/curves": "^2.0.1"
}
}