{
  "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.16",
  "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.4",
    "@noble/ciphers": "^1.3.0",
    "@noble/curves": "^1.9.7",
    "@noble/hashes": "^1.8.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.2.5",
    "@types/node": "^24.7.2",
    "@vitest/coverage-v8": "^3.2.4",
    "typescript": "^5.9.3",
    "undici": "^7.16.0",
    "vitest": "^3.2.4"
  },
  "pnpm": {
    "onlyBuiltDependencies": [
      "@biomejs/biome",
      "esbuild"
    ]
  },
  "packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}
