{
  "name": "agp-js-sdk",
  "version": "0.1.5",
  "description": "TypeScript SDK for H.AI Agent Platform - easily integrate AI web automation into your applications",
  "main": "dist/agp.js",
  "browser": "dist/agp.browser.js",
  "unpkg": "dist/agp.browser.js",
  "types": "dist/agp.d.ts",
  "exports": {
    ".": {
      "import": "./dist/agp.js",
      "require": "./dist/agp.js",
      "types": "./dist/agp.d.ts"
    }
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm run test",
    "example": "ts-node examples/basic-usage.ts",
    "example:step-by-step": "node examples/step-by-step-example.js"
  },
  "keywords": [
    "agp",
    "hai",
    "agent",
    "automation",
    "browser",
    "web-automation",
    "ai",
    "sdk",
    "typescript",
    "javascript"
  ],
  "author": "H.AI Team",
  "license": "MIT",
  "dependencies": {
    "cross-fetch": "^4.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "typescript": "^5.0.0",
    "@types/jest": "^29.0.0",
    "ts-jest": "^29.0.0",
    "ts-node": "^10.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "CHANGELOG.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hcompai/agp-js-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/hcompai/agp-js-sdk/issues"
  },
  "homepage": "https://github.com/hcompai/agp-js-sdk#readme",
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
