-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mcp-fileops",
"version": "0.1.0",
"description": "MCP file operations server for AI coding agents.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/vaur94/mcp-fileops#readme",
"bugs": {
"url": "https://github.com/vaur94/mcp-fileops/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaur94/mcp-fileops.git"
},
"bin": {
"mcp-fileops": "bin/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.14.0",
"npm": ">=10.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"typescript",
"filesystem",
"developer-tools",
"agent-tools"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"clean": "rimraf coverage dist .turbo",
"dev": "tsup --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run tests/unit tests/integration",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:protocol": "npm run build && vitest run tests/protocol",
"test:coverage": "vitest run tests/unit tests/integration --coverage",
"ci:check": "npm run format:check && npm run lint && npm run typecheck && npm run test:coverage && npm run test:protocol",
"pack:dry-run": "npm pack --dry-run",
"prepack": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@vaur94/mcpbase": "1.3.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
}
}