{
  "name": "timesheet",
  "version": "1.0.3",
  "type": "module",
  "description": "Lightweight CLI tool for generating employee timesheets with multi-profile support",
  "bin": {
    "timesheetgenerate": "src/index.ts"
  },
  "scripts": {
    "build": "bun build ./bin/cli.ts --outdir ./dist --target bun",
    "dev": "bun run ./bin/cli.ts",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "bun run build",
    "release": "bun run ./scripts/publish.ts",
    "release:patch": "bun run ./scripts/publish.ts patch",
    "release:minor": "bun run ./scripts/publish.ts minor",
    "release:major": "bun run ./scripts/publish.ts major",
    "release:dry": "bun run ./scripts/publish.ts --dry-run"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "commander": "^13.0.0"
  },
  "devDependencies": {
    "@types/bun": "^1.1.14",
    "typescript": "^5.7.2"
  },
  "homepage": "https://github.com/hasnaxyz/timesheetgenerate#readme",
  "bugs": {
    "url": "https://github.com/hasnaxyz/timesheetgenerate/issues"
  },
  "keywords": [
    "timesheet",
    "employee",
    "hours",
    "tracking",
    "cli",
    "hasnaxyz"
  ],
  "publishConfig": {
    "access": "restricted",
    "registry": "https://registry.npmjs.org/"
  }
}
