-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.35 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
{
"name": "langsetup",
"displayName": "LangSetup",
"description": "One-click compiler, runtime & extension installer for any programming language.",
"version": "1.0.0",
"publisher": "your-publisher-name",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"setup",
"install",
"compiler",
"language",
"beginner"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "langsetup-sidebar",
"title": "LangSetup",
"icon": "media/icon-activity.svg"
}
]
},
"views": {
"langsetup-sidebar": [
{
"type": "webview",
"id": "langsetup.sidebarView",
"name": "Language Installer"
}
]
},
"commands": [
{
"command": "langsetup.open",
"title": "LangSetup: Open Language Installer"
},
{
"command": "langsetup.clearHistory",
"title": "LangSetup: Clear Install History"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.19.39",
"@types/vscode": "^1.116.0",
"strip-comments": "^2.0.1",
"typescript": "^5.9.3"
}
}