package.json•896 B
{
"name": "git-mcp",
"version": "0.1.0",
"description": "Domain-neutral git utility service for Model Context Protocol agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "tsx watch src/index.ts",
"lint": "eslint .",
"test": "vitest run",
"start": "node dist/index.js"
},
"dependencies": {
"fastify": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.17.6",
"typescript": "^5.6.3",
"tsx": "^4.18.0",
"vitest": "^3.2.4",
"eslint": "^9.38.0",
"@eslint/js": "^9.38.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yevheniikravchuk/git-mcp"
}
}