-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "codefile",
"version": "1.0.1",
"description": "CodeFile - MCP server for code operations, filesystem management, and project analysis",
"type": "module",
"main": "server.js",
"bin": {
"codefile": "./bin/codefile.js",
"codefile-setup": "./bin/setup.js"
},
"files": [
"server.js",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"setup": "node bin/setup.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"code",
"filesystem",
"search",
"programmer",
"development",
"ai-tools"
],
"author": "Vincent Emmanuel <vincent_emmanuel@ymail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VincentEmmanuel/codefile.git"
},
"bugs": {
"url": "https://github.com/VincentEmmanuel/codefile/issues"
},
"homepage": "https://github.com/VincentEmmanuel/codefile#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"glob": "^10.3.10",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
}
}