-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
117 lines (117 loc) · 2.99 KB
/
package.json
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
{
"name": "vscodium-devpodcontainers",
"displayName": "DevPod Containers",
"description": "DevContainers support for VS Codium via DevPods",
"version": "0.0.17",
"engines": {
"vscode": "^1.80.0"
},
"publisher": "3timeslazy",
"repository": {
"type": "git",
"url": "https://github.com/3timeslazy/vscodium-devpodcontainers.git"
},
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Other"
],
"keywords": [
"devcontainer",
"devcontainers",
"development container",
"dev container",
"devpod",
"remote development",
"remote",
"docker",
"containers"
],
"extensionDependencies": [
"jeanp413.open-remote-ssh"
],
"enabledApiProposals": [
"contribViewsRemote"
],
"activationEvents": [
"onStartupFinished",
"workspaceContains:.devcontainer/devcontainer.json",
"workspaceContains:.devcontainer.json"
],
"contributes": {
"views": {
"remote": [
{
"id": "devpodcontainers.devpods",
"name": "DevPods",
"group": "targets",
"remoteName": "devpods"
}
]
},
"menus": {
"view/title": [
{
"command": "vscodium-devpodcontainers.refreshEntry",
"when": "view == devpodcontainers.devpods",
"group": "navigation"
}
]
},
"commands": [
{
"command": "vscodium-devpodcontainers.open",
"title": "Open in Container",
"category": "DevPod Containers"
},
{
"command": "vscodium-devpodcontainers.recreateAndOpen",
"title": "Recreate and Open in Container",
"category": "DevPod Containers"
},
{
"command": "vscodium-devpodcontainers.refreshEntry",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "vscodium-devpodcontainers.list",
"title": "Show Workspaces",
"category": "DevPod Containers"
}
],
"configuration": [
{
"title": "Remote - DevPod Containers",
"properties": {
"remote.devpodcontainers.devpodCommand": {
"type": "string",
"description": "The command to use for running DevPod.",
"default": "devpod",
"scope": "machine-overridable"
}
}
}
]
},
"main": "./dist/extension.js",
"scripts": {
"watch": "tsc --build --watch",
"package": "pnpm run bundle && pnpm vsce package --no-dependencies",
"bundle": "esbuild --bundle --main-fields=module,main --minify --outfile=dist/extension.js --external:vscode --format=cjs --platform=node src/extension.ts",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^20.16.5",
"@types/vscode": "^1.80.0",
"@types/which": "^3.0.4",
"@vscode/vsce": "^3.1.0",
"esbuild": "^0.24.0",
"prettier": "3.3.3",
"typescript": "^5.6.2"
},
"dependencies": {
"jsonc-parser": "^3.3.1",
"which": "^4.0.0"
}
}