{
  "name": "@pcd/util",
  "version": "0.9.0",
  "license": "MIT",
  "main": "./dist/cjs/src/index.js",
  "module": "./dist/esm/src/index.js",
  "types": "./dist/types/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/src/index.d.ts",
      "import": "./dist/esm/src/index.js",
      "require": "./dist/cjs/src/index.js"
    }
  },
  "files": [
    "dist",
    "./README.md",
    "./LICENSE"
  ],
  "scripts": {
    "lint": "eslint \"**/*.ts{,x}\"",
    "build": "tsc -b tsconfig.cjs.json tsconfig.esm.json",
    "postbuild": "fix-esm-import-path ./dist/esm/src",
    "typecheck": "yarn tsc --noEmit",
    "prepublishOnly": "yarn clean && yarn build",
    "test": "ts-mocha --type-check --config ../../../.mocharc.js --exit 'test/**/*.spec.ts'",
    "clean": "rm -rf dist node_modules *.tsbuildinfo"
  },
  "dependencies": {
    "buffer": "^6.0.3",
    "email-validator": "^2.0.4",
    "js-sha256": "^0.10.1",
    "secure-random": "^1.1.2",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@pcd/eslint-config-custom": "0.15.0",
    "@pcd/tsconfig": "0.15.0",
    "@types/chai": "^4.3.5",
    "@types/email-validator": "^1.0.6",
    "@types/mocha": "^10.0.1",
    "@types/secure-random": "^1.1.3",
    "@types/uuid": "^9.0.2",
    "chai": "^4.3.7",
    "eslint": "^8.57.0",
    "fix-esm-import-path": "^1.10.0",
    "mocha": "^10.2.0",
    "ts-mocha": "^10.0.0",
    "typescript": "^5.3.3"
  },
  "publishConfig": {
    "access": "public"
  }
}
