{
  "name": "moon-did-resolver",
  "version": "10.4.0",
  "description": "Resolve DID documents for ethereum addresses and public keys",
  "type": "commonjs",
  "source": "./src/index.ts",
  "main": "./lib/index.js",
  "module": "./esm/index.js",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./esm/index.js",
      "require": "./lib/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "lib/index.d.ts": [
        "lib/index.d.ts"
      ],
      "*": [
        "./lib/index.d.js"
      ]
    }
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:RadicalLedger/moon-did-resolver.git"
  },
  "files": [
    "lib",
    "esm",
    "src",
    "LICENSE"
  ],
  "author": "Radical Ledger",
  "license": "Apache-2.0",
  "keywords": [
    "did:moon",
    "DID",
    "DID document",
    "PKI",
    "resolver",
    "Verifiable Credential",
    "W3C",
    "ethereum",
    "ethereumAddress",
    "blockchainAccountId",
    "registry",
    "EIP1056",
    "EcdsaSecp256k1RecoveryMethod2020",
    "EcdsaSecp256k1VerificationKey2019",
    "Ed25519VerificationKey2018"
  ],
  "scripts": {
    "test": "jest",
    "test:ci": "jest --coverage",
    "build": "tsc",
    "clean": "rm -rf ./lib",
    "format": "prettier --write \"src/**/*.[jt]s\"",
    "lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
    "prepublishOnly": "yarn test:ci && yarn format && yarn lint",
    "release": "semantic-release --debug"
  },
  "jest": {
    "clearMocks": true,
    "collectCoverageFrom": [
      "src/**/*.{ts,tsx}",
      "!src/**/*.d.ts",
      "!**/node_modules/**",
      "!**/__tests__/**"
    ],
    "testEnvironment": "node",
    "testMatch": [
      "**/__tests__/**/*.test.[jt]s"
    ]
  },
  "devDependencies": {
    "@babel/core": "7.24.0",
    "@babel/preset-env": "7.24.0",
    "@babel/preset-typescript": "7.23.3",
    "@ethers-ext/provider-ganache": "6.0.0-beta.2",
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/git": "10.0.1",
    "@types/jest": "29.5.12",
    "@typescript-eslint/eslint-plugin": "6.21.0",
    "@typescript-eslint/parser": "6.21.0",
    "babel-jest": "29.7.0",
    "eslint": "8.57.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-jest": "27.9.0",
    "eslint-plugin-prettier": "5.1.3",
    "jest": "29.7.0",
    "microbundle": "0.15.1",
    "prettier": "3.2.5",
    "semantic-release": "22.0.12",
    "typescript": "5.4.2",
    "crypto-js": "^4.2.0",
    "web3": "^4.6.0",
    "web3-eth-abi": "^4.2.0",
    "web3-utils": "^4.2.1",
    "@ethereumjs/tx": "^5.3.0"
  },
  "dependencies": {
    "did-resolver": "^4.1.0"
  }
}
