-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.4 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.4 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "openapi-directory-mcp",
"version": "1.3.11",
"description": "Model Context Protocol server for accessing enhanced triple-source OpenAPI directory (APIs.guru + additional APIs + custom imports)",
"type": "module",
"main": "dist/index.js",
"bin": {
"openapi-directory-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"preflight": "node scripts/preflight-checks.js",
"test": "jest",
"test:unit": "jest -c jest.config.unit.js",
"test:unit:watch": "jest -c jest.config.unit.js --watch",
"test:unit:coverage": "jest -c jest.config.unit.js --coverage",
"test:feature": "jest -c jest.config.feature.js",
"test:feature:watch": "jest -c jest.config.feature.js --watch",
"test:feature:coverage": "jest -c jest.config.feature.js --coverage",
"test:integration": "jest -c jest.config.integration.js",
"test:integration:watch": "jest -c jest.config.integration.js --watch",
"test:smoke": "jest tests/smoke --verbose",
"test:e2e": "jest -c jest.config.e2e.js",
"test:e2e:watch": "jest -c jest.config.e2e.js --watch",
"test:all": "npm run test:unit && npm run test:feature && npm run test:integration",
"test:coverage": "npm run test:unit:coverage && npm run test:feature:coverage",
"test:coverage:full": "jest --coverage",
"test:ci": "npm run test:unit -- --ci --watchAll=false && npm run test:feature -- --ci --watchAll=false && npm run test:integration -- --ci --watchAll=false && npm run test:e2e -- --ci --watchAll=false",
"test:regression": "node tests/integration/setup-custom-spec.mjs && node tests/integration/triple-source-smoke-test.mjs",
"test:regression:setup": "node tests/integration/setup-custom-spec.mjs",
"test:regression:run": "node tests/integration/triple-source-smoke-test.mjs",
"test:reports": "node tests/integration/generate-visual-report.mjs",
"test:regression:full": "npm run test:regression:setup && npm run test:regression:run && npm run test:reports",
"test:mutation": "stryker run",
"test:mutation:validation": "stryker run stryker.validation.conf.mjs",
"test:mutation:quick": "stryker run stryker.quick.conf.mjs",
"test:security": "jest -c jest.config.security.js",
"test:performance": "jest -c jest.config.performance.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"format:fix": "prettier --write 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"validate": "npm run lint && npm run type-check && npm run test:ci && npm run test:regression",
"validate:full": "npm run validate && npm run test:mutation:quick",
"prepare": "npm run build",
"prepublishOnly": "npm run validate"
},
"keywords": [
"mcp",
"model-context-protocol",
"openapi",
"api-directory",
"apis-guru",
"swagger",
"api-discovery",
"claude",
"ai",
"custom-specs",
"yaml-import",
"api-import"
],
"author": "OpenAPI Directory MCP Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rawveg/openapi-directory-mcp.git"
},
"homepage": "https://github.com/rawveg/openapi-directory-mcp#readme",
"bugs": {
"url": "https://github.com/rawveg/openapi-directory-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.0",
"dompurify": "^3.2.6",
"js-yaml": "^4.1.0",
"jsdom": "^26.1.0",
"node-cache": "^5.1.2",
"xss": "^1.0.15",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^30.0.4",
"@stryker-mutator/core": "^9.0.1",
"@stryker-mutator/jest-runner": "^9.0.1",
"@stryker-mutator/typescript-checker": "^9.0.1",
"@types/dompurify": "^3.0.5",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^30.0.4",
"prettier": "^3.0.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"preferGlobal": true,
"publishConfig": {
"access": "public"
}
}