-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@verygoodplugins/mcp-freescout",
"version": "2.1.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": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"eslint": "^9.0.0",
"jest": "^30.3.0",
"prettier": "^3.1.0",
"ts-jest": "^29.4.6",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0"
}
}