forked from onozaty/redmine-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "@compasify/redmine-mcp-server",
"version": "1.1.4",
"description": "MCP server for Redmine",
"type": "module",
"packageManager": "pnpm@10.20.0",
"bin": {
"redmine-mcp-server": "./dist/server.mjs"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"gen": "rm -rf src/__generated__ && orval && node post-generate.js",
"build": "pnpm gen && tsdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compasify/redmine-mcp-server.git"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"redmine"
],
"author": "compasify",
"license": "MIT",
"bugs": {
"url": "https://github.com/compasify/redmine-mcp-server/issues"
},
"homepage": "https://github.com/compasify/redmine-mcp-server#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"orval": "^7.10.0",
"tsdown": "^0.12.9",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.15.0",
"zod": "^3.25.75"
}
}