{
  "name": "@worldcoin/idkit-core",
  "version": "2.1.0",
  "homepage": "https://docs.world.org/id/idkit",
  "license": "MIT",
  "private": false,
  "description": "The identity SDK. Privacy-preserving identity and proof of personhood with World ID.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/worldcoin/idkit-js",
    "directory": "packages/core"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./build/index.js",
      "types": "./build/index.d.ts",
      "require": "./build/index.cjs"
    },
    "./hashing": {
      "import": "./build/lib/hashing.js",
      "types": "./build/lib/hashing.d.ts",
      "require": "./build/lib/hashing.cjs"
    },
    "./backend": {
      "import": "./build/lib/backend.js",
      "types": "./build/lib/backend.d.ts",
      "require": "./build/lib/backend.cjs"
    }
  },
  "typesVersions": {
    "*": {
      "backend": [
        "./build/lib/backend.d.ts"
      ],
      "hashing": [
        "./build/lib/hashing.d.ts"
      ],
      "*": [
        "./build/index.d.ts"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=12.4"
  },
  "files": [
    "build/**",
    "README.md"
  ],
  "keywords": [
    "identity",
    "ID",
    "web3",
    "proof-of-personhood",
    "sybil resistance"
  ],
  "dependencies": {
    "browser-or-node": "3.0.0-pre.0",
    "buffer": "^6.0.3",
    "ox": "^0.1.0",
    "zustand": "^4.5"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^6.13.1",
    "@typescript-eslint/parser": "^6.13.1",
    "tsup": "^8.1.0",
    "typescript": "^5.3.2"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "eslint src --ext .ts"
  }
}