-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "@imqueue/mcp",
"version": "2.1.4",
"mcpName": "org.imqueue/mcp",
"description": "Model Context Protocol server for @imqueue — lets AI coding agents search the docs and scaffold typed services & clients.",
"keywords": [
"mcp",
"model-context-protocol",
"imqueue",
"ai",
"coding-assistant",
"cursor",
"claude",
"rpc",
"microservices",
"nodejs",
"typescript"
],
"homepage": "https://imqueue.org",
"repository": {
"type": "git",
"url": "git+https://github.com/imqueue/mcp.git"
},
"license": "GPL-3.0",
"author": "imqueue.com <support@imqueue.com>",
"type": "module",
"bin": {
"imqueue-mcp": "dist/index.js"
},
"files": [
"dist",
"SPEC.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"smoke": "node scripts/smoke.mjs",
"version": "node scripts/sync-version.mjs && git add server.json",
"prepublishOnly": "npm run build",
"postpublish": "node scripts/deploy-worker.mjs && node scripts/publish-registry.mjs && node scripts/publish-github-release.mjs",
"typecheck:worker": "tsc --noEmit -p worker/tsconfig.json",
"dev:worker": "wrangler dev",
"deploy:worker": "wrangler deploy"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"wrangler": "^4.0.0"
},
"overrides": {
"@hono/node-server": "^2.0.5"
}
}