{
  "name": "@cef-ebsi/key-encoder",
  "version": "2.0.1",
  "description": "Library for encoding ECDSA private keys to PEM, DER and raw hex formats",
  "license": "EUPL-1.2",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "bitbucket",
    "url": "https://ec.europa.eu/digital-building-blocks/code/scm/ebsi/core-libs.git",
    "directory": "packages/key-encoder"
  },
  "type": "module",
  "exports": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "prepare": "yarn build",
    "build": "tsc -p tsconfig/tsconfig.build.esm.json",
    "clean": "rimraf dist coverage",
    "lint": "yarn lint:tsc",
    "lint:tsc": "tsc --noEmit --incremental false",
    "test": "vitest --run",
    "test:unit": "yarn test",
    "test:e2e": "echo \"Info: there's no e2e tests for @cef-ebsi/key-encoder\" && exit 0",
    "test:ci": "yarn test:unit --coverage --reporter=default"
  },
  "dependencies": {
    "@noble/secp256k1": "^2.2.3",
    "asn1.js": "^5.4.1"
  }
}
