forked from JustinBeckwith/pylon-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
65
{
"name": "pylon-mcp",
"version": "1.1.1",
"description": "MCP server for Pylon customer support platform",
"mcpName": "io.github.JustinBeckwith/pylon-mcp",
"packageManager": "pnpm@10.33.0",
"main": "dist/index.js",
"bin": {
"pylon-mcp": "dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit && tsc --project tsconfig.scripts.json",
"lint": "biome lint .",
"fix": "biome check --write .",
"format": "biome format --write .",
"validate:mcp": "node --experimental-strip-types scripts/validate-mcp.ts",
"prepare": "husky"
},
"keywords": [
"mcp",
"pylon",
"customer-support",
"helpdesk"
],
"author": "Justin Beckwith <justin.beckwith@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JustinBeckwith/pylon-mcp.git"
},
"bugs": {
"url": "https://github.com/JustinBeckwith/pylon-mcp/issues"
},
"homepage": "https://github.com/JustinBeckwith/pylon-mcp#readme",
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^4.0.3",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"vitest": "^4.0.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"zod": "^4.0.0"
}
}