{
  "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.14",
  "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": {
    "build": "npx tsc",
    "test": "vitest",
    "test:browser": "node ./scripts/gen-browser-tests.mjs && cd tests-browser && pnpm test"
  },
  "dependencies": {
    "@ecies/ciphers": "^0.2.2",
    "@noble/ciphers": "^1.0.0",
    "@noble/curves": "^1.6.0",
    "@noble/hashes": "^1.5.0"
  },
  "devDependencies": {
    "@types/node": "^22.13.4",
    "@vitest/coverage-v8": "^3.0.6",
    "typescript": "^5.7.3",
    "undici": "^7.3.0",
    "vitest": "^3.0.6"
  },
  "packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
}
