{
  "name": "@wterm/ghostty",
  "version": "0.5.0",
  "description": "libghostty-powered terminal core for wterm — full-featured VT emulation via Ghostty's WASM build",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./ghostty-vt.wasm": "./wasm/ghostty-vt.wasm"
  },
  "files": [
    "dist",
    "wasm"
  ],
  "dependencies": {
    "@wterm/core": "0.5.0"
  },
  "devDependencies": {
    "typescript": "^6.0.2",
    "@internal/ts": "0.0.0"
  },
  "keywords": [
    "terminal",
    "emulator",
    "ghostty",
    "libghostty",
    "wasm",
    "xterm"
  ],
  "license": "Apache-2.0",
  "homepage": "https://wterm.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/vercel-labs/wterm",
    "directory": "packages/@wterm/ghostty"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "type-check": "tsc --noEmit",
    "rebuild-wasm": "bash scripts/build-wasm.sh",
    "rebuild-wasm:docker": "bash scripts/build-wasm-docker.sh"
  }
}