package.json•1.76 kB
{
"name": "@standardbeagle/harvest-mcp",
"version": "0.2.0",
"description": "Model Context Protocol server for Harvest API integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "nodemon --exec tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts"
},
"keywords": [
"mcp",
"harvest",
"api",
"time-tracking",
"model-context-protocol",
"claude",
"ai-assistant",
"productivity"
],
"author": "standardbeagle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/standardbeagle/harvest-mcp.git"
},
"homepage": "https://github.com/standardbeagle/harvest-mcp#readme",
"bugs": {
"url": "https://github.com/standardbeagle/harvest-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.6.12",
"nodemon": "^3.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"bin": "./dist/index.js",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/index.js.map",
"dist/index.d.ts.map",
"dist/harvest-client.js",
"dist/harvest-client.d.ts",
"dist/harvest-client.js.map",
"dist/harvest-client.d.ts.map",
"dist/tools.js",
"dist/tools.d.ts",
"dist/tools.js.map",
"dist/tools.d.ts.map",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}