{
  "name": "@steipete/poltergeist",
  "version": "2.1.1",
  "description": "The ghost that keeps your builds fresh - a universal file watcher with auto-rebuild for any language or build system",
  "keywords": [
    "build",
    "watchman",
    "automation",
    "file-watcher",
    "cli",
    "polter",
    "smart-execution",
    "rust",
    "go",
    "swift",
    "typescript",
    "cpp",
    "xcode",
    "make",
    "cargo",
    "npm",
    "gradle",
    "maven",
    "macos",
    "windows",
    "linux",
    "dev-tools",
    "cross-platform"
  ],
  "homepage": "https://github.com/steipete/poltergeist",
  "bugs": {
    "url": "https://github.com/steipete/poltergeist/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/steipete/poltergeist.git"
  },
  "license": "MIT",
  "author": "Peter Steinberger <steipete@gmail.com>",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "poltergeist": "./dist/cli.js",
    "polter": "./dist/polter.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@logtape/logtape": "^1.2.0",
    "@mariozechner/pi-tui": "^0.9.1",
    "arkregex": "^0.0.3",
    "chalk": "^5.6.2",
    "commander": "^14.0.2",
    "es-toolkit": "^1.42.0",
    "fb-watchman": "^2.0.2",
    "glob": "^13.0.0",
    "node-notifier": "^10.0.1",
    "ora": "^9.0.0",
    "picomatch": "^4.0.3",
    "wrap-ansi": "^9.0.2",
    "write-file-atomic": "^7.0.0",
    "zod": "^4.1.12"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.7",
    "@prettier/plugin-oxc": "^0.0.5",
    "@steipete/oracle": "link:../oracle",
    "@types/fb-watchman": "^2.0.6",
    "@types/node": "^24.10.1",
    "@types/node-notifier": "^8.0.5",
    "@types/picomatch": "^4.0.2",
    "@types/write-file-atomic": "^4.0.3",
    "@vitest/coverage-v8": "^4.0.13",
    "cross-env": "^10.1.0",
    "prettier": "^3.6.2",
    "tsx": "^4.20.6",
    "typedoc": "^0.28.14",
    "typedoc-plugin-mermaid": "^1.12.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.13"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "build:bun": "bun scripts/build-bun.js",
    "build:bun:all": "bun scripts/build-bun.js --all-platforms",
    "build:bun:test": "bun scripts/build-bun.js --test",
    "build:bun:debug": "bun scripts/build-bun.js --debug",
    "build:bun:optimized": "bun scripts/build-bun-optimized.js",
    "build:bun:optimized:benchmark": "bun scripts/build-bun-optimized.js --benchmark",
    "dev": "tsx watch src/cli.ts",
    "dev:bun": "bun --watch src/cli.ts",
    "start": "node dist/cli.js",
    "start:bun": "bun run src/cli.ts",
    "test": "vitest",
    "test:bun": "bun test",
    "test:windows-ci": "vitest --config vitest.config.windows-ci.ts",
    "test:e2e": "pnpm run build && pnpm exec tsx scripts/run-examples.ts",
    "test:all": "pnpm test && pnpm run test:e2e",
    "lint": "biome check src test",
    "lint:fix": "biome check src test --write",
    "format": "biome format src test --write",
    "format:check": "biome format src test",
    "prettier": "prettier --write src test",
    "prettier:check": "prettier --check src test",
    "typecheck": "tsc --noEmit",
    "test:coverage": "cross-env POLTERGEIST_COVERAGE_MODE=true vitest run --coverage test/utils/paths.test.ts test/utils/glob-matcher.test.ts test/utils/atomic-write.test.ts test/utils/cli-formatter.test.ts test/utils/build-status-manager.test.ts",
    "poltergeist:self:haunt": "node dist/cli.js haunt",
    "poltergeist:self:panel": "node --watch --watch-path dist --watch-preserve-output dist/cli.js panel",
    "poltergeist:panel": "pnpm run poltergeist:self:panel",
    "docs:api": "typedoc",
    "docs:api:watch": "typedoc --watch",
    "docs:swift": "cd apps/mac && ./scripts/generate-docs.sh",
    "docs:serve": "cd docs && python3 -m http.server 8080",
    "docs:build": "pnpm run docs:api && pnpm run docs:swift && echo 'Complete API documentation generated in docs/api/'",
    "oracle": "oracle"
  }
}