-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.18 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@patternfly/patternfly-mcp",
"version": "0.9.0",
"description": "PatternFly documentation MCP server built with Node.js and TypeScript",
"main": "dist/index.js",
"type": "module",
"imports": {
"~docsCatalog": "./src/docs.json",
"#toolsHost": "./dist/server.toolsHost.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"patternfly-mcp": "dist/cli.js",
"pf-mcp": "dist/cli.js",
"pfmcp": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"mcp-config-example.json"
],
"scripts": {
"build": "npm run build:clean; npm run test:types; pkgroll",
"build:clean": "rm -rf dist",
"build:watch": "npm run build -- --watch",
"release": "changelog --non-cc --link-url https://github.com/patternfly/patternfly-mcp.git",
"start": "node dist/cli.js --log-stderr",
"start:dev": "tsx watch src/cli.ts --verbose --log-stderr",
"test": "npm run test:spell && npm run test:spell-docs && npm run test:lint && npm run test:types && jest --selectProjects unit --roots=src/",
"test:audit": "jest --selectProjects audit --roots=tests/audit/",
"test:dev": "npm test -- --watchAll",
"test:integration": "npm run build && NODE_OPTIONS='--experimental-vm-modules' jest --selectProjects e2e --roots=tests/e2e/",
"test:integration-dev": "npm run test:integration -- --watchAll",
"test:lint": "eslint .",
"test:lint-fix": "eslint . --fix",
"test:spell-docs": "cspell './README.md' './CONTRIBUTING.md' './docs/**/*.md' './guidelines/**/*.md' './docs/**/*.ts' './docs/**/*.js' --config ./cspell.config.json --fail-fast",
"test:spell": "cspell './src/**/*.ts' './tests/**/*.ts' --exclude './src/**/*test*' --exclude './tests/**/*test*' --config ./cspell.config.json --fail-fast",
"test:types": "tsc --noEmit",
"prepare": "npm run build",
"prepack": "npm run build"
},
"keywords": [
"mcp",
"server",
"typescript",
"nodejs",
"patternfly",
"documentation",
"react"
],
"author": "Red Hat",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"@patternfly/patternfly-component-schemas": "1.2.0",
"fastest-levenshtein": "1.0.16",
"pid-port": "2.0.1",
"semver": "7.7.4",
"zod": "4.3.6"
},
"devDependencies": {
"@cdcabrera/eslint-config-toolkit": "^0.5.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"@types/semver": "7.7.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"changelog-light": "^3.0.6",
"cspell": "^9.7.0",
"eslint": "^9.39.3",
"jest": "^30.2.0",
"pkgroll": "^2.27.0",
"ts-jest": "29.4.4",
"ts-jest-mock-import-meta": "^1.3.1",
"ts-node": "^10.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly/patternfly-mcp.git"
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/patternfly/patternfly-mcp/issues"
},
"homepage": "https://github.com/patternfly/patternfly-mcp#readme"
}