-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 982 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 982 Bytes
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
{
"name": "vale-mcp",
"version": "0.1.0",
"description": "MCP server for Vale linting integration",
"main": "build/index.js",
"type": "module",
"bin": {
"vale-cli": "build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"watch": "tsc --watch",
"start": "node build/index.js",
"install:global": "npm link",
"uninstall:global": "npm unlink -g vale-mcp",
"prepublishOnly": "npm run build"
},
"files": [
"build",
"readme.md"
],
"keywords": [
"mcp",
"vale",
"linting",
"documentation",
"style-guide",
"prose",
"writing"
],
"author": "Chris Chinchilla",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chrischinchilla/vale-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2"
},
"devDependencies": {
"@types/node": "^24.2.0",
"typescript": "^5.9.2"
}
}