UNPKG

eciesjs

Version:

Elliptic Curve Integrated Encryption Scheme for secp256k1/curve25519

82 lines (81 loc) 1.95 kB
{ "name": "eciesjs", "description": "Elliptic Curve Integrated Encryption Scheme for secp256k1/curve25519", "license": "MIT", "author": { "name": "Weiliang Li", "email": "to.be.impressive@gmail.com", "url": "https://github.com/kigawas" }, "repository": { "type": "git", "url": "git+https://github.com/ecies/js.git" }, "version": "0.5.0", "engines": { "node": ">=16", "bun": ">=1", "deno": ">=2.7.10" }, "keywords": [ "secp256k1", "curve25519", "crypto", "elliptic curves", "ecies", "bitcoin", "ethereum", "cryptocurrency" ], "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./config": { "types": "./dist/config.d.ts", "default": "./dist/config.js" }, "./consts": { "types": "./dist/consts.d.ts", "default": "./dist/consts.js" }, "./utils": { "types": "./dist/utils/index.d.ts", "default": "./dist/utils/index.js" } }, "scripts": { "check": "biome check", "check:fix": "biome check --fix", "build": "npx tsc", "test": "vitest", "test:browser": "node ./scripts/gen-browser-tests.mjs && cd tests-browser && pnpm test" }, "dependencies": { "@ecies/ciphers": "^0.2.6", "@noble/ciphers": "^1.3.0", "@noble/curves": "^1.9.7", "@noble/hashes": "^1.8.0" }, "devDependencies": { "@biomejs/biome": "2.4.10", "@types/node": "^25.5.0", "@vitest/coverage-v8": "^4.1.2", "typescript": "^6.0.2", "undici": "^7.24.7", "vitest": "^4.1.2" }, "pnpm": { "onlyBuiltDependencies": [ "@biomejs/biome", "esbuild" ] }, "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319" }