82 lines
1.9 KiB
JSON
82 lines
1.9 KiB
JSON
{
|
|
"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.4.15",
|
|
"engines": {
|
|
"node": ">=16",
|
|
"bun": ">=1",
|
|
"deno": ">=2"
|
|
},
|
|
"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.3",
|
|
"@noble/ciphers": "^1.3.0",
|
|
"@noble/curves": "^1.9.1",
|
|
"@noble/hashes": "^1.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@types/node": "^22.15.19",
|
|
"@vitest/coverage-v8": "^3.1.4",
|
|
"typescript": "^5.8.3",
|
|
"undici": "^7.9.0",
|
|
"vitest": "^3.1.4"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"@biomejs/biome",
|
|
"esbuild"
|
|
]
|
|
},
|
|
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
|
|
}
|