{
  "name": "@hongkongkiwi/clockify-master-mcp",
  "version": "1.0.5",
  "description": "Clockify Master MCP - The most comprehensive Model Context Protocol server for Clockify time tracking with full API integration, advanced filtering, and enterprise features",
  "displayName": "Clockify Master MCP",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "clockify-master-mcp": "./dist/index.js"
  },
  "keywords": [
    "mcp",
    "clockify",
    "time-tracking",
    "model-context-protocol",
    "api",
    "productivity",
    "claude",
    "ai",
    "automation",
    "timesheet",
    "reporting",
    "project-management"
  ],
  "author": "HongKongKiwi",
  "license": "MIT",
  "homepage": "https://github.com/hongkongkiwi/mcp-clockify#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/hongkongkiwi/mcp-clockify.git"
  },
  "bugs": {
    "url": "https://github.com/hongkongkiwi/mcp-clockify/issues"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.3",
    "axios": "^1.11.0",
    "dotenv": "^17.2.1",
    "zod": "^3.25.76",
    "zod-to-json-schema": "^3.24.6"
  },
  "devDependencies": {
    "@eslint/js": "^9.33.0",
    "@types/node": "^24.3.0",
    "@typescript-eslint/eslint-plugin": "^8.39.1",
    "@typescript-eslint/parser": "^8.39.1",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "eslint": "^9.33.0",
    "nock": "^14.0.10",
    "prettier": "^3.6.2",
    "tsx": "^4.20.4",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  },
  "files": [
    "dist",
    "README.md",
    "CONTRIBUTING.md"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "build": "tsc",
    "start": "node dist/index.js",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "publish:npm": "npm publish",
    "publish:jsr": "npx jsr publish",
    "release": "npm run test && npm run build && npm run publish:npm && npm run publish:jsr",
    "version:patch": "npm run ci:check && npm version patch && npm run release:trigger",
    "version:minor": "npm run ci:check && npm version minor && npm run release:trigger",
    "version:major": "npm run ci:check && npm version major && npm run release:trigger",
    "version:prerelease": "npm run ci:check && npm version prerelease && npm run release:trigger",
    "ci:check": "npm run typecheck && npm run lint && npm run test:coverage",
    "release:trigger": "git push origin main --follow-tags",
    "release:dry": "npm run ci:check && echo 'Dry run: would create release'",
    "changelog": "node scripts/generate-changelog.js",
    "format": "prettier --write .",
    "format:check": "prettier --check ."
  }
}