-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.77 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mcp-pre-commit",
"version": "1.0.0",
"description": "MCP tool server for managing git repositories and pre-commit hooks",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-pre-commit": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"watch": "tsc --watch",
"prepare": "husky",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"**/*.{ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,json,md,yml,yaml}\""
},
"keywords": [
"mcp",
"git",
"pre-commit",
"hooks",
"model-context-protocol",
"developer-tools",
"automation",
"code-quality",
"linting",
"formatting"
],
"author": "ARS System",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ars-system/mcp-pre-commit.git"
},
"bugs": {
"url": "https://github.com/ars-system/mcp-pre-commit/issues"
},
"homepage": "https://github.com/ars-system/mcp-pre-commit#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}