{
  "name": "@jackice/hashline",
  "version": "0.1.1",
  "description": "Hashline: a compact, line-anchored patch language and applier, packaged as a pi coding-agent extension. Fork of @oh-my-pi/hashline with a pure-TS line diff (no native bindings).",
  "author": "jackice",
  "license": "MIT",
  "type": "module",
  "keywords": [
    "pi",
    "pi-coding-agent",
    "pi-package",
    "patch",
    "diff",
    "edit",
    "hashline",
    "agent",
    "llm"
  ],
  "files": [
    "index.ts",
    "src",
    "README.md",
    "CHANGELOG.md"
  ],
  "pi": {
    "extensions": [
      "./index.ts"
    ]
  },
  "main": "./src/index.ts",
  "types": "./src/index.ts",
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "import": "./src/index.ts"
    },
    "./grammar.lark": "./src/grammar.lark",
    "./prompt.md": "./src/prompt.md",
    "./*": {
      "types": "./src/*.ts",
      "import": "./src/*.ts"
    },
    "./*.js": "./src/*.ts"
  },
  "scripts": {
    "check": "biome check . && bun run check:types",
    "check:types": "tsgo -p tsconfig.json --noEmit",
    "test": "bun test --parallel"
  },
  "dependencies": {
    "@oh-my-pi/pi-utils": "17.2.12"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.84.0",
    "@types/bun": "latest",
    "typebox": "^1.3.11",
    "typescript": "^7.0.2"
  },
  "engines": {
    "bun": ">=1.3.14"
  }
}
