-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (98 loc) · 2.38 KB
/
package.json
File metadata and controls
100 lines (98 loc) · 2.38 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": "bitnet-vscode-extension",
"displayName": "BitNet-VSCode-Extension",
"description": "Running Microsoft's BitNet inference framework via FastAPI, Docker and Model Context Protocol exposed local endpoints.",
"version": "0.0.3",
"icon": "icon.png",
"license": "MIT",
"publisher": "nftea-gallery",
"engines": {
"vscode": "^1.100.0"
},
"repository": {
"type": "git",
"url": "https://github.com/grctest/BitNet-VSCode-Extension"
},
"homepage": "https://github.com/grctest/BitNet-VSCode-Extension",
"keywords": [
"BitNet",
"LLM",
"local inference",
"local llama",
"Large language model",
"AI",
"Artificial Intelligence",
"MCP",
"Model Context Provider",
"Docker",
"FastAPI",
"llama"
],
"categories": [
"Machine Learning",
"Other"
],
"main": "./extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"mcpServerDefinitionProviders": [
{
"id": "bitnet-vscode-extension",
"label": "BitNet MCP Server"
}
],
"commands": [
{
"command": "bitnet.initializeMcpServer",
"title": "BitNet: Initialize MCP Server"
},
{
"command": "bitnet.startMcpServer",
"title": "BitNet: Start Server"
},
{
"command": "bitnet.checkDockerContainer",
"title": "BitNet: Check Docker Container"
},
{
"command": "bitnet.stopDockerContainer",
"title": "BitNet: Emergency Stop Docker Container"
},
{
"command": "bitnet.removeDockerContainer",
"title": "BitNet: Remove Docker Container"
},
{
"command": "bitnet.removeDockerImage",
"title": "BitNet: Remove Docker Image"
},
{
"command": "bitnet.restartMcpServer",
"title": "BitNet: Restart Server"
},
{
"command": "bitnet.showMcpServerStatus",
"title": "BitNet: Show FastAPI Server Status"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"extensionDependencies": [
"ms-azuretools.vscode-docker"
],
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.100.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.25.1",
"vscode": "^1.1.37"
}
}