{
  "name": "packx",
  "version": "3.0.8",
  "description": "Smart file filter for Repomix - search and bundle only files containing specific strings",
  "license": "MIT",
  "type": "module",
  "author": "John Lindquist",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/johnlindquist/pack.git"
  },
  "bugs": {
    "url": "https://github.com/johnlindquist/pack/issues"
  },
  "homepage": "https://github.com/johnlindquist/pack#readme",
  "files": [
    "dist/**",
    "README.md"
  ],
  "keywords": [
    "repomix",
    "filter",
    "search",
    "bundle",
    "pack",
    "ai",
    "llm",
    "code"
  ],
  "bin": {
    "packx": "dist/index.js",
    "pack": "dist/index.js"
  },
  "scripts": {
    "build": "bun build ./src/index.ts --outdir dist --target node --format esm",
    "dev": "bun run ./src/index.ts --help",
    "prepublishOnly": "npm run update-version-in-code && npm run build",
    "update-version-in-code": "node scripts/update-version.js",
    "release:patch": "npm version patch && npm publish && git push && git push --tags",
    "release:minor": "npm version minor && npm publish && git push && git push --tags",
    "release:major": "npm version major && npm publish && git push && git push --tags",
    "compile": "bun build ./src/index.ts --compile --outfile bin/pack",
    "compile:all": "npm run compile:macos && npm run compile:linux && npm run compile:windows",
    "compile:macos": "bun build ./src/index.ts --compile --target bun-darwin-x64 --outfile bin/pack-macos-x64",
    "compile:macos-arm": "bun build ./src/index.ts --compile --target bun-darwin-arm64 --outfile bin/pack-macos-arm64",
    "compile:linux": "bun build ./src/index.ts --compile --target bun-linux-x64 --outfile bin/pack-linux-x64",
    "compile:linux-arm": "bun build ./src/index.ts --compile --target bun-linux-arm64 --outfile bin/pack-linux-arm64",
    "compile:windows": "bun build ./src/index.ts --compile --target bun-windows-x64 --outfile bin/pack-windows-x64.exe"
  },
  "dependencies": {
    "glob": "^10.3.10",
    "minimatch": "^9.0.3",
    "mri": "^1.2.0",
    "repomix": "^1.2.1"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/node": "^22.0.0",
    "typescript": "^5.5.0"
  },
  "engines": {
    "bun": ">=1.1.0"
  }
}
