-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.55 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@n0zer0d4y/vulcan-file-ops",
"version": "1.2.14",
"mcpName": "io.github.n0zer0d4y/vulcan-file-ops",
"description": "MCP server for AI assistants: read, write, edit, and manage files securely on local filesystem.",
"license": "MIT",
"author": "n0zer0d4y",
"homepage": "https://github.com/n0zer0d4y/vulcan-file-ops",
"repository": {
"type": "git",
"url": "git+https://github.com/n0zer0d4y/vulcan-file-ops.git"
},
"bugs": {
"url": "https://github.com/n0zer0d4y/vulcan-file-ops/issues"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"context-engineering",
"ai",
"ai-tools",
"claude",
"claude-desktop",
"filesystem",
"file-operations",
"file-management",
"read-files",
"write-files",
"edit-files",
"ai-assistant",
"llm",
"llm-tools",
"pdf",
"docx",
"document-parsing",
"code-editor",
"typescript",
"ai-assisted-coding"
],
"type": "module",
"bin": {
"vulcan-file-ops": "dist/cli.js"
},
"files": [
"dist/cli.js",
"dist/index.js",
"dist/server/index.js",
"dist/tools/*.js",
"dist/utils/*.js",
"dist/types/index.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"watch": "tsc --watch",
"test": "jest --config=jest.config.cjs",
"test:coverage": "jest --config=jest.config.cjs --coverage",
"start": "node dist/index.js",
"lint:json": "node -e \"JSON.parse(require('fs').readFileSync('package.json'))\" && echo \"package.json is valid JSON\"",
"lint": "npm run lint:json"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.20.0",
"@turbodocx/html-to-docx": "^1.16.0",
"diff": "^8.0.3",
"docx": "^9.5.1",
"dotenv": "^17.2.3",
"glob": "^11.0.3",
"html-to-pdfmake": "^2.5.32",
"jsdom": "^27.4.0",
"mammoth": "^1.11.0",
"minimatch": "^10.1.1",
"officeparser": "^5.2.1",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"pdfmake": "^0.2.20",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/html-to-docx": "^1.8.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^22",
"@types/pdf-parse": "^1.1.5",
"@types/pdfmake": "^0.2.12",
"jest": "^30.2.0",
"shx": "^0.3.4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}