{
  "name": "@loclaude-internal/cli",
  "version": "0.0.5",
  "description": "An internal @loclaude-internal package that supplies common CLI utilities.",
  "module": "dist/index.js",
  "type": "module",
  "license": "MIT",
  "keywords": [
    "claude",
    "ollama",
    "llm",
    "cli",
    "ai",
    "open-webui",
    "claude-code"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nicholasgalante1997/loclaude.git"
  },
  "homepage": "https://github.com/nicholasgalante1997/loclaude.git#readme",
  "bugs": {
    "url": "https://github.com/nicholasgalante1997/loclaude.git/issues"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/",
    "tag": "latest"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./bun": {
      "import": "./dist/index.bun.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.bun.js"
    },
    "./bun.js": {
      "import": "./dist/index.bun.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.bun.js"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "engines": {
    "bun": ">=1.3"
  },
  "packageManager": "bun@1.3.6",
  "scripts": {
    "prebuild": "rm -rf dist",
    "build-types": "tsc -p tsconfig.json --emitDeclarationOnly",
    "bundle": "bun build.ts",
    "build": "run-p build-types bundle",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "prepublishOnly": "bun run build",
    "prerelease": "run-s test build",
    "release": "npm publish --access public",
    "release:rc": "npm publish --tag rc --access public",
    "release:alpha": "npm publish --tag alpha --access public",
    "release:beta": "npm publish --tag beta --access public",
    "postrelease": "export LOCLAUDE_RELEASE_VERSION=\"$(jq -r .version package.json)\" && ./scripts/release-commit.sh $LOCLAUDE_RELEASE_VERSION && ./scripts/tag.sh $LOCLAUDE_RELEASE_VERSION"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/bytes": "^3.1.5",
    "@types/node": "^25.0.10",
    "npm-run-all": "^4.1.5"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "dependencies": {
    "@inquirer/prompts": "^8.2.0",
    "bytes": "^3.1.2",
    "cac": "^6.7.14",
    "picocolors": "^1.1.1"
  }
}
