{
  "name": "@evenrealities/even_hub_sdk",
  "version": "0.0.10",
  "description": "TypeScript SDK for Even Hub developers to communicate with Even App",
  "author": "Whiskee <whiskee.chen@evenrealities.com>",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "exports": {
    ".": {
      "import": {
        "default": "./dist/index.js"
      },
      "require": {
        "default": "./dist/index.cjs"
      }
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "README.zh-CN.md",
    "LICENSE"
  ],
  "sideEffects": [
    "./src/shadow-timers.ts",
    "./dist/index.js",
    "./dist/index.cjs"
  ],
  "scripts": {
    "build": "tsup && npm run obfuscate",
    "build:raw": "tsup",
    "dev": "tsup --watch",
    "clean": "rimraf dist",
    "test": "vitest run --passWithNoTests",
    "test:watch": "vitest",
    "typecheck": "tsc",
    "verify": "npm run typecheck && npm run test && npm run build",
    "prepublishOnly": "npm run verify",
    "obfuscate": "javascript-obfuscator \"dist\" --output \"dist\" --exclude \"dist/**/*.d.ts\" --exclude \"dist/**/*.map\" --compact true --control-flow-flattening true --control-flow-flattening-threshold 0.75 --dead-code-injection true --dead-code-injection-threshold 0.4 --string-array true --string-array-encoding base64 --string-array-threshold 0.75"
  },
  "devDependencies": {
    "javascript-obfuscator": "^4.1.0",
    "rimraf": "^6.0.1",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3",
    "vitest": "^3.0.2"
  },
  "engines": {
    "node": "^20.0.0 || >=22.0.0"
  }
}
