-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "monotainer",
"displayName": "Monotainer: Docker Dashboard",
"publisher": "monosyde",
"description": "VS Code dashboard for managing Docker containers, images, and volumes.",
"version": "0.1.4",
"engines": {
"vscode": "^1.99.0"
},
"icon": "repo-assets/icon.png",
"categories": [
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "monotainer.listContainers",
"title": "Show Active Containers",
"category": "Monotainer"
},
{
"command": "monotainer.openContainerDashboard",
"title": "Open Dashboard",
"category": "Monotainer"
}
]
},
"scripts": {
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"lint": "echo 'No lint configured'",
"test": "echo 'No tests configured'",
"package": "vsce package",
"publish": "vsce publish",
"login": "vsce login monotainer"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/monosyde/monotainer.git"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/vscode": "1.99.0",
"@vscode/vsce": "^3.6.0",
"typescript": "^5.9.2"
}
}