-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.22 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": "filesystem-ts",
"version": "2.0.0",
"description": "Standalone TypeScript MCP server for filesystem access",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"filesystem",
"file-system",
"file-operations",
"read-file",
"write-file",
"edit-file",
"file-search",
"directory-tree",
"typescript",
"nodejs"
],
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"filesystem-ts": "dist/index.js"
},
"files": [
"dist/constants.js",
"dist/index.js",
"dist/lib.js",
"dist/path-utils.js"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"diff": "^9.0.0",
"minimatch": "^10.2.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.2",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"shx": "^0.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.5"
}
}