{
  "name": "dalal",
  "version": "0.0.1-canary.16",
  "description": "A CLI Tool for Interacting with Ollama Language Models",
  "keywords": [
    "cli",
    "ollama",
    "language-models",
    "text-generation",
    "ai",
    "machine-learning"
  ],
  "repository": "nrjdalal/starter",
  "license": "MIT",
  "author": {
    "name": "Neeraj Dalal",
    "email": "admin@nrjdalal.com",
    "url": "https://nrjdalal.com"
  },
  "type": "module",
  "exports": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "dalal": "./dist/bin/index.js",
    "dl": "./dist/bin/index.js",
    "ol": "./dist/bin/ollama.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "cli": "bun run build && node dist/bin/index.js",
    "dev": "tsup --watch",
    "prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then npx simple-git-hooks; fi",
    "publish:latest": "NODE_ENV=production changeset publish"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged",
    "commit-msg": "npx commitlint --edit $1"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*": "prettier --write --ignore-unknown",
    "package.json": "sort-package-json"
  },
  "dependencies": {
    "tinyglobby": "^0.2.10"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.27.12",
    "@commitlint/cli": "^19.7.1",
    "@commitlint/config-conventional": "^19.7.1",
    "@ianvs/prettier-plugin-sort-imports": "^4.4.1",
    "@types/node": "^22.13.1",
    "lint-staged": "^15.4.3",
    "prettier": "^3.4.2",
    "simple-git-hooks": "^2.11.1",
    "sort-package-json": "^2.14.0",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3"
  }
}
