{
  "name": "@worldcoin/idkit-standalone",
  "version": "2.0.2",
  "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",
    "directory": "packages/standalone",
    "url": "git+https://github.com/worldcoin/idkit-js"
  },
  "type": "module",
  "main": "src/index.tsx",
  "exports": "./build/index.global.js",
  "types": "src/index.tsx",
  "engines": {
    "node": ">=12.4"
  },
  "files": [
    "build",
    "README.md"
  ],
  "keywords": [
    "identity",
    "ID",
    "web3",
    "proof-of-personhood",
    "sybil resistance"
  ],
  "dependencies": {
    "react": ">18.0.0",
    "react-dom": ">18.0.0",
    "@worldcoin/idkit": "^2.0.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/react": "18.0.25",
    "@types/react-dom": "18.0.9",
    "@typescript-eslint/eslint-plugin": "^6.13.1",
    "@typescript-eslint/parser": "^6.13.1",
    "concurrently": "^8.2.2",
    "eslint": "8.54.0",
    "http-server": "^14.1.1",
    "prettier": "^2.8.8",
    "prettier-plugin-sort-imports-desc": "^1.0.0",
    "puppeteer": "^22.12.1",
    "ts-node": "^10.9.2",
    "tsup": "^8.1.0",
    "typescript": "^5.3.2"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "eslint src --ext .tsx",
    "test": "concurrently --kill-others \"http-server ./build/ -p 8080\"  \"pnpm test:browser\"",
    "test:browser": "node src/browser.test.js &",
    "install-chrome": "puppeteer browsers install chrome"
  }
}