-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.94 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.94 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
{
"name": "github-mcp-server",
"version": "1.0.2",
"description": "GitHub MCP Server",
"scripts": {
"format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write",
"build": "tsc --noEmit && tsc --outDir build",
"start": "node build/index.js",
"prepare": "husky",
"dev": "tsx watch --env-file=.env src/index.ts",
"version:patch": "yarn version --patch --no-git-tag-version && VERSION=$(node -p \"require('./package.json').version\") && git add package.json && git commit -m \"chore: release v$VERSION\" && git tag v$VERSION && git push && git push --tags",
"version:minor": "yarn version --minor --no-git-tag-version && VERSION=$(node -p \"require('./package.json').version\") && git add package.json && git commit -m \"chore: release v$VERSION\" && git tag v$VERSION && git push && git push --tags",
"version:major": "yarn version --major --no-git-tag-version && VERSION=$(node -p \"require('./package.json').version\") && git add package.json && git commit -m \"chore: release v$VERSION\" && git tag v$VERSION && git push && git push --tags"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn run format"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/express": "^5.0.1",
"eslint": "^9.25.1",
"husky": "^9.0.11",
"lint-staged": "^15.5.1",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"tsx": "4.7.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.10",
"@ai-sdk/openai": "^1.3.21",
"@modelcontextprotocol/sdk": "^1.10.2",
"@neondatabase/serverless": "^1.0.0",
"@octokit/auth-app": "^7.2.1",
"@octokit/core": "^6.1.5",
"@prisma/client": "6.7.0",
"ai": "^4.3.13",
"axios": "^1.9.0",
"express": "^5.1.0",
"nodemailer": "^6.10.1",
"octokit": "^4.1.3",
"puppeteer": "^24.7.2",
"redis": "^5.0.0",
"zod": "^3.24.3"
}
}