-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.92 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "tabby-mcp-server",
"version": "1.6.3-rc.2",
"description": "MCP (Model Context Protocol) server plugin for Tabby terminal - Complete terminal control with 36 MCP tools including SFTP file transfer",
"homepage": "https://github.com/GentlemanHu/Tabby-MCP",
"repository": {
"type": "git",
"url": "git+https://github.com/GentlemanHu/Tabby-MCP.git"
},
"bugs": {
"url": "https://github.com/GentlemanHu/Tabby-MCP/issues"
},
"keywords": [
"tabby-plugin",
"mcp",
"model-context-protocol",
"terminal",
"ai",
"cursor",
"windsurf",
"ssh",
"sftp",
"sse"
],
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"build": "webpack --progress --color",
"typecheck": "tsc --noEmit",
"test": "node scripts/smoke-test.js",
"check": "npm run typecheck && npm test && npm run build",
"watch": "webpack --progress --color --watch",
"install-plugin": "bash scripts/install.sh",
"uninstall-plugin": "bash scripts/uninstall.sh"
},
"files": [
"dist",
"typings",
"scripts/stdio-bridge.js"
],
"author": "GentlemanHu <justfeelingme@gmail.com>",
"contributors": [
"AI Assistant (Claude/Gemini)"
],
"license": "MIT",
"peerDependencies": {
"@angular/animations": "*",
"@angular/common": "*",
"@angular/core": "*",
"@angular/forms": "*",
"@ng-bootstrap/ng-bootstrap": "*",
"rxjs": "*",
"tabby-core": "*",
"tabby-settings": "*",
"tabby-terminal": "*",
"tabby-ssh": "*"
},
"peerDependenciesMeta": {
"tabby-ssh": {
"optional": true
},
"@angular/animations": {
"optional": true
},
"@angular/common": {
"optional": true
},
"@angular/core": {
"optional": true
},
"@angular/forms": {
"optional": true
},
"@ng-bootstrap/ng-bootstrap": {
"optional": true
},
"rxjs": {
"optional": true
},
"tabby-core": {
"optional": true
},
"tabby-settings": {
"optional": true
},
"tabby-terminal": {
"optional": true
}
},
"devDependencies": {
"@modelcontextprotocol/sdk": "1.25.2",
"@xterm/addon-serialize": "^0.12.0",
"express": "^4.18.2",
"zod": "^3.22.4",
"@angular/common": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/animations": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"rxjs": "^7.8.0",
"tabby-core": "^1.0.163",
"tabby-settings": "^1.0.163",
"tabby-ssh": "^1.0.163",
"tabby-terminal": "^1.0.163",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"apply-loader": "^2.0.0",
"css-loader": "^6.8.1",
"sass": "^1.69.0",
"sass-loader": "^13.3.2",
"strip-ansi": "^7.1.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}