{
  "name": "@walletconnect/relay-auth",
  "description": "Relay Client Authentication",
  "version": "1.1.0",
  "author": "WalletConnect, Inc. <walletconnect.com>",
  "license": "MIT",
  "keywords": [
    "relay",
    "auth",
    "jwt",
    "did",
    "eddsa",
    "ed25519"
  ],
  "files": [
    "dist"
  ],
  "main": "dist/index.cjs.js",
  "module": "dist/index.es.js",
  "browser": "dist/index.es.js",
  "unpkg": "dist/index.umd.js",
  "types": "dist/types/index.d.ts",
  "homepage": "https://github.com/walletconnect/walletconnect-utils",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/walletconnect/walletconnect-utils.git"
  },
  "bugs": {
    "url": "https://github.com/walletconnect/walletconnect-utils/issues"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build:pre": "npm run clean",
    "build:types": "tsc",
    "build:source": "rollup --config rollup.config.js",
    "build": "npm run build:pre && npm run build:source && npm run build:types",
    "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts",
    "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
    "npm-publish:latest": "npm publish --access public --tag latest",
    "npm-publish:canary": "npm publish --access public --tag canary",
    "prepublishOnly": "npm run test && npm run build",
    "prettier": "prettier --config ../../.prettierrc --check {src,test}/**/*.ts",
    "format": "prettier --config ../../.prettierrc --write {src,test}/**/*.ts"
  },
  "devDependencies": {
    "@types/jest": "^26.0.15",
    "@types/node": "^14.14.7",
    "did-jwt": "^6.1.2",
    "did-resolver": "^3.2.2",
    "key-did-resolver": "^2.0.4",
    "webpack": "5.93.0",
    "webpack-cli": "5.1.4"
  },
  "dependencies": {
    "@noble/curves": "1.8.0",
    "@noble/hashes": "1.7.0",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/time": "^1.0.2",
    "uint8arrays": "^3.0.0"
  }
}
