-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "files-mcp",
"version": "1.0.0",
"description": "MCP server for sandboxed file access",
"main": "dist/index.js",
"type": "module",
"bin": {
"files-mcp": "./dist/index.js"
},
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:protocol": "bun test tests/protocol.test.ts",
"test:protocol:built": "MCP_TEST_ENTRY=dist/index.js bun test tests/protocol.test.ts",
"inspector": "npx @modelcontextprotocol/inspector bun run src/index.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"filesystem",
"files",
"server",
"claude",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/server": "2.0.0-beta.5",
"diff": "^8.0.3",
"escape-string-regexp": "^5.0.0",
"fast-glob": "^3.3.3",
"fuzzysort": "^3.1.0",
"ignore": "^7.0.5",
"picomatch": "^4.0.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@modelcontextprotocol/client": "2.0.0-beta.5",
"@types/diff": "^7.0.2",
"@types/escape-string-regexp": "^1.0.0",
"@types/node": "^24.10.0",
"@types/picomatch": "^4.0.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0"
}
}