package.json•1.58 kB
{
"name": "@verygoodplugins/mcp-toggl",
"version": "1.0.0",
"description": "MCP server for Toggl Track integration with time tracking and reporting",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-toggl": "dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc && npm run postbuild",
"postbuild": "chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"setup": "node scripts/setup.js",
"test": "tsx src/test.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"toggl",
"time-tracking",
"reporting",
"productivity"
],
"author": "Very Good Plugins",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-toggl.git"
},
"homepage": "https://github.com/verygoodplugins/mcp-toggl#readme",
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-toggl/issues"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
}
}