-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.79 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 2.79 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
119
120
121
122
123
{
"name": "doc-mcpify",
"version": "3.0.1",
"description": "A framework that allows API providers to expose a fully compliant MCP server without writing MCP-specific code",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"doc-mcpify": "dist/bin/doc-mcp.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./md": {
"types": "./dist/md.d.ts",
"import": "./dist/md.mjs",
"require": "./dist/md.js"
},
"./mdx": {
"types": "./dist/mdx.d.ts",
"import": "./dist/mdx.mjs",
"require": "./dist/mdx.js"
},
"./js": {
"types": "./dist/js.d.ts",
"import": "./dist/js.mjs",
"require": "./dist/js.js"
},
"./ts": {
"types": "./dist/ts.d.ts",
"import": "./dist/ts.mjs",
"require": "./dist/ts.js"
},
"./openapi": {
"types": "./dist/openapi.d.ts",
"import": "./dist/openapi.mjs",
"require": "./dist/openapi.js"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.mjs",
"dist/**/*.d.ts",
"dist/**/*.d.mts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"machine-consumable-protocol",
"api",
"documentation",
"openapi",
"swagger",
"rest",
"express",
"fastify"
],
"author": "FirePheonix",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FirePheonix/doc-mcp.git"
},
"bugs": {
"url": "https://github.com/FirePheonix/doc-mcp/issues"
},
"homepage": "https://github.com/FirePheonix/doc-mcp#readme",
"dependencies": {
"glob": "^11.1.0",
"zod": "^3.22.4"
},
"optionalDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.5",
"js-yaml": "^4.1.0",
"openapi-types": "^12.1.3",
"remark": "^15.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"eslint": "^8.55.0",
"express": "^4.18.0",
"fastify": "^4.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^1.1.0"
},
"peerDependencies": {
"express": "^4.18.0 || ^5.0.0",
"fastify": "^4.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
}
}