{
  "name": "chatgpt-web-opencode",
  "version": "0.9.5",
  "description": "OpenCode plugin for ChatGPT web /backend-api/f/conversation (SSE).",
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jaredboynton/chatgpt-web-opencode.git"
  },
  "homepage": "https://github.com/jaredboynton/chatgpt-web-opencode#readme",
  "bugs": {
    "url": "https://github.com/jaredboynton/chatgpt-web-opencode/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js"
    },
    "./code-mode": {
      "types": "./dist/code-mode/index.d.ts",
      "import": "./dist/code-mode/index.js"
    }
  },
  "bin": {
    "chatgpt-web-opencode": "bin/chatgpt-web-opencode.js"
  },
  "files": [
    "dist/",
    "bin/chatgpt-web-opencode.js",
    "bin/chatgpt-fetch.mjs",
    "bin/chatgpt-code-mode.mjs",
    "README.md",
    "SECURITY.md",
    "LICENSE",
    "package.json"
  ],
  "scripts": {
    "lint": "tsc --noEmit -p tsconfig.json",
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "test": "vitest run",
    "build": "tsc -p tsconfig.build.json",
    "verify": "npm run lint && npm run typecheck && npm run build && npm run test",
    "harness:contract": "tsx scripts/harness/contract-suite.ts",
    "harness:opencode": "tsx scripts/harness/contract.ts",
    "harness:live": "tsx scripts/harness/live.ts",
    "harness:release": "tsx scripts/harness/release.ts",
    "harness:scan": "tsx scripts/harness/scan-artifacts.ts",
    "live:wire": "tsx scripts/live-wire.ts",
    "live:multiturn": "tsx scripts/live-multiturn.ts",
    "live:stream": "tsx scripts/live-stream.ts",
    "live:tools": "tsx scripts/live-tool-use.ts",
    "prepack": "npm run build",
    "prepublishOnly": "npm run verify"
  },
  "dependencies": {
    "jsonc-parser": "^3.3.1"
  },
  "peerDependencies": {
    "@opencode-ai/plugin": ">=1.0.0 <2"
  },
  "devDependencies": {
    "@opencode-ai/plugin": "^1.14.41",
    "@types/node": "^22.15.0",
    "opencode-ai": "1.18.3",
    "tsx": "^4.20.3",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  }
}
