-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (102 loc) · 2.54 KB
/
package.json
File metadata and controls
108 lines (102 loc) · 2.54 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
{
"name": "DOCKaroo",
"displayName": "Dockaroo",
"description": "Enhanced VS Code extension for live Docker container editing with auto-detection, logs viewer, and shell access. Based on the original DOCKaroo by muditrajsade.",
"icon": "media/ship.png",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/aryaman108/DOCKaroo.git"
},
"publisher": "SADEMUDITRAJ",
"preview": true,
"galleryBanner.color": {
"color" : "#21214c",
"theme" : "dark"
},
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:myView",
"onCommand:DOCKaroo.dockerize",
"onCommand:DOCKaroo.viewLogs",
"onCommand:DOCKaroo.execShell",
"onCommand:DOCKaroo.removeContainer"
],
"main": "./extension.js",
"contributes": {
"commands": [{
"command": "DOCKaroo.dockerize",
"title": "Dockerize Project"
}, {
"command": "DOCKaroo.viewLogs",
"title": "View Container Logs"
}, {
"command": "DOCKaroo.execShell",
"title": "Open Shell in Container"
}, {
"command": "DOCKaroo.removeContainer",
"title": "Remove Container"
}],
"configuration": {
"title": "DOCKaroo",
"properties": {
"dockaroo.defaultHostPort": {
"type": "number",
"default": 3000,
"description": "Default host port for container"
},
"dockaroo.defaultContainerPort": {
"type": "number",
"default": 3000,
"description": "Default container port"
},
"dockaroo.autoDetectProjectType": {
"type": "boolean",
"default": true,
"description": "Automatically detect project type"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "myExtensionActivityBar",
"title": "My Extension",
"icon": "media/ship.svg"
}
]
},
"views": {
"myExtensionActivityBar": [
{
"id": "myView",
"name": "My View",
"type": "webview"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test",
"build-react": "cd my-webview && npm run build",
"pretest": "npm run build-react && npm run lint"
},
"devDependencies": {
"@types/vscode": "^1.100.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"eslint": "^9.25.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2"
},
"extensionDependencies":[
"vscode.git"
]
}