-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "@rubicontv/forgejo-mcp",
"version": "0.17.0",
"description": "Model Context Protocol server for Forgejo/Gitea: read tools plus safe additive writes (issues, comments, pull requests). No merge, delete, or admin surface.",
"license": "Apache-2.0",
"author": "Dax Davis <dax@rubicontv.com>",
"type": "module",
"bin": {
"forgejo-mcp": "dist/index.js"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubicon/forgejo-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"forgejo",
"gitea",
"claude"
],
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"dev": "npm run build && node dist/index.js",
"smoke": "npm run build && node scripts/smoke.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^26.1.0",
"esbuild": "^0.28.1",
"typescript": "^7.0.2"
}
}