{
  "name": "@steel-dev/pi",
  "version": "0.1.0",
  "description": "Official Steel cloud browser extension for the Pi coding agent",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "keywords": [
    "pi-package",
    "pi-extension",
    "steel",
    "browser-automation",
    "cloud-browser",
    "playwright"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/steel-dev/pi-steel.git"
  },
  "homepage": "https://steel.dev",
  "bugs": {
    "url": "https://github.com/steel-dev/pi-steel/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.19.0"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ]
  },
  "scripts": {
    "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
    "build": "npm run clean && tsc -p tsconfig.json",
    "typecheck:src": "tsc -p tsconfig.json --noEmit",
    "typecheck:tests": "tsc -p tsconfig.test.json --noEmit",
    "typecheck": "npm run typecheck:src && npm run typecheck:tests",
    "test:tools": "npm run build && node --import tsx --test tests/*.test.ts",
    "test:live": "node --import tsx --test tests/live.smoke.ts",
    "test": "npm run typecheck && npm run test:tools",
    "check": "npm test && npm pack --dry-run && npm audit --omit=dev --audit-level=high",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm pack --dry-run"
  },
  "dependencies": {
    "playwright-core": "^1.62.0",
    "steel-sdk": "^0.18.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.82.1",
    "@types/node": "^26.1.2",
    "tsx": "^4.23.1",
    "typebox": "^1.3.8",
    "typescript": "^7.0.2"
  },
  "overrides": {
    "form-data": "^4.0.6",
    "rimraf": "^6.0.1"
  }
}
