{
  "name": "henyo-pi-core",
  "version": "0.9.1",
  "description": "Pi coding agent extension - henyo core functionality",
  "keywords": [
    "pi-package"
  ],
  "license": "MIT",
  "main": "index.ts",
  "type": "module",
  "engines": {
    "node": ">=22"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/henyojess/henyo-pi-core.git"
  },
  "bugs": {
    "url": "https://github.com/henyojess/henyo-pi-core/issues"
  },
  "homepage": "https://github.com/henyojess/henyo-pi-core#readme",
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*"
  },
  "files": [
    "index.ts",
    "src/",
    "skills/",
    "SAMPLE_GLOBAL_AGENTS.md"
  ],
  "pi": {
    "extensions": [
      "./index.ts"
    ]
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.84.2",
    "@earendil-works/pi-tui": "^0.84.2",
    "@eslint/js": "^10.0.1",
    "@types/node": "^26.1.1",
    "@typescript-eslint/eslint-plugin": "^8.67.0",
    "@typescript-eslint/parser": "^8.67.0",
    "@typescript/native": "npm:typescript@^7.0.2",
    "@vitest/coverage-v8": "^4.1.10",
    "eslint": "^10.0.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.6",
    "prettier": "^3.9.5",
    "typescript": "npm:@typescript/typescript6@^6.0.2",
    "vitest": "^4.1.10"
  },
  "dependencies": {
    "diff": "^8.0.4"
  },
  "scripts": {
    "dev": "pi -e ./index.ts",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "lint": "tsc --noEmit && eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" index.ts",
    "format:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" index.ts",
    "build": "tsc --noEmit"
  }
}