{
  "name": "libghostty-bun",
  "version": "0.1.0",
  "description": "bun:ffi bindings for libghostty-vt (the zero-dependency VT parser/state library from ghostty).",
  "keywords": [
    "ghostty",
    "libghostty-vt",
    "terminal",
    "vt",
    "ansi",
    "escape-sequences",
    "bun",
    "ffi"
  ],
  "license": "MIT",
  "author": "jdeiss06 <jdeiss06@gmail.com>",
  "homepage": "https://github.com/FireSquid6/libghostty-bun#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FireSquid6/libghostty-bun.git"
  },
  "bugs": {
    "url": "https://github.com/FireSquid6/libghostty-bun/issues"
  },
  "module": "src/index.ts",
  "main": "src/index.ts",
  "types": "src/index.ts",
  "type": "module",
  "exports": {
    ".": "./src/index.ts"
  },
  "files": [
    "src",
    "shim",
    "scripts",
    "prebuilds",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "bun": ">=1.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "bun run scripts/build.ts",
    "example": "bun run examples/basic.ts",
    "test": "bun test",
    "typecheck": "tsc --noEmit",
    "check": "bun run scripts/ensure-native.ts && bun run typecheck && bun test",
    "postinstall": "bun run scripts/postinstall.ts",
    "prepack": "bun run scripts/ensure-native.ts",
    "prepublishOnly": "bun run check",
    "pack:dry": "npm pack --dry-run",
    "release": "bun run scripts/publish.ts"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5"
  }
}
