{
  "name": "reliora",
  "version": "0.2.0",
  "description": "The Experience Layer for AI Agents.",
  "type": "module",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js"
    }
  },
  "bin": {
    "reliora": "dist/src/cli.js"
  },
  "files": [
    "dist/src",
    "examples",
    "scripts/demo.mjs",
    "docs",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "prepack": "npm run build",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "eslint src test",
    "test": "npm run build && node --test dist/test/reliora.test.js dist/test/agent-integration.test.js dist/test/stage2.test.js",
    "test:package": "node scripts/package-smoke.mjs",
    "test:agent-package": "node scripts/agent-package-smoke.mjs",
    "test:stage2-package": "node scripts/stage2-package-smoke.mjs",
    "demo": "npm run build && node scripts/demo.mjs"
  },
  "engines": {
    "node": ">=20"
  },
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.30.0",
    "@types/node": "^24.0.0",
    "eslint": "^9.30.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.35.0"
  }
}
