-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "file-operation-mcp",
"version": "1.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"start": "node dist/index.js",
"format": "prettier --write .",
"lint": "eslint ."
},
"keywords": [
"mcp",
"typescript",
"file",
"file-operation"
],
"repository": {
"type": "git",
"url": "git@github.com:lxKylin/file-operation-mcp"
},
"author": "lxKylin",
"license": "MIT",
"bugs": {
"url": "https://github.com/lxKylin/file-operation-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"@types/archiver": "^6.0.3",
"@types/express": "^5.0.3",
"@types/tar": "^6.1.13",
"archiver": "^7.0.1",
"express": "^5.1.0",
"extract-zip": "^2.0.1",
"fs-extra": "^11.3.0",
"pdf-lib": "^1.17.1",
"pdf2pic": "^3.2.0",
"sharp": "^0.34.3",
"tar": "^7.4.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@rslib/core": "^0.10.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.16.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}