-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.25 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
{
"name": "asyncapi-mcp-server",
"version": "3.1.0",
"description": "AsyncAPI MCP server — Model Context Protocol server for working with AsyncAPI: parse and validate documents, list templates, and generate code and docs (via @asyncapi/parser and @asyncapi/generator) for any MCP-compatible client",
"bin": {
"asyncapi-mcp-server": "dist/index.js"
},
"main": "dist/index.js",
"engines": {
"node": ">=24.11",
"npm": ">=11.5.1"
},
"author": "Adi Boghawala boghawalaadi@gmail.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Adi-204/asyncapi-mcp-server.git"
},
"homepage": "https://github.com/Adi-204/asyncapi-mcp-server#readme",
"bugs": {
"url": "https://github.com/Adi-204/asyncapi-mcp-server/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:watch": "vitest",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"prepublishOnly": "npm run build && npm test && npm run lint",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"generate:assets": "npm run build"
},
"keywords": [
"asyncapi",
"asyncapi-mcp",
"mcp",
"model-context-protocol",
"code-generation",
"ai"
],
"license": "Apache-2.0",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@asyncapi/converter": "^2.0.1",
"@asyncapi/generator": "^3.2.1",
"@asyncapi/modelina": "^5.10.1",
"@asyncapi/parser": "^3.6.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@stoplight/spectral-core": "^1.22.0",
"@stoplight/spectral-ruleset-bundler": "^1.5.0",
"@stoplight/spectral-rulesets": "^1.22.0",
"@stoplight/spectral-runtime": "^1.1.0",
"js-yaml": "^4.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"conventional-changelog-conventionalcommits": "^9.1.0",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"shx": "^0.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
}
}