mcp-freescout/package.json
2026-04-22 14:22:38 +01:00

64 lines
1.6 KiB
JSON

{
"name": "@verygoodplugins/mcp-freescout",
"version": "2.0.1",
"description": "MCP server for FreeScout ticket management and workflow automation",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.verygoodplugins/mcp-freescout",
"bin": {
"mcp-freescout": "dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest --testPathIgnorePatterns=integration",
"test:integration": "jest --testPathPattern=integration",
"test:all": "jest",
"lint": "eslint src/",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"freescout",
"helpdesk",
"ticket-management",
"workflow-automation"
],
"author": "Very Good Plugins",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-freescout.git"
},
"homepage": "https://github.com/verygoodplugins/mcp-freescout#readme",
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-freescout/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^17.2.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.4.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}