-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 4.17 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
{
"name": "cs50",
"displayName": "CS50",
"description": "A CS50 Visual Studio Code extension",
"icon": "images/cs50.png",
"version": "0.0.1",
"publisher": "CS50",
"repository": "https://github.com/cs50/cs50.vsix",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cs50.returnHome",
"title": "Go to Home Folder",
"icon": "$(home)"
},
{
"command": "cs50.resetLayout",
"title": "Reset Layout"
},
{
"command": "cs50.resetTerminal",
"title": "Reset Terminal"
}
],
"configuration": [
{
"title": "Dispose Debug Terminals",
"properties": {
"debug50.disposeDebugTerminals": {
"type": "boolean",
"description": "Dispose debug terminal when debug session ends.",
"default": true
}
}
},
{
"title": "Watch Ports",
"properties": {
"cs50.watchPorts": {
"type": "array",
"description": "Ports to watch for.",
"default": []
}
}
}
],
"keybindings": [
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
],
"views": {
"cs50-menu": [
{
"id": "cs50-menu",
"name": "CS50 Menu"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "cs50-menu",
"title": "CS50 Menu",
"icon": "resources/cs50.svg"
}
]
},
"viewsWelcome": [
{
"view": "cs50-menu",
"contents": "Configure Display Language:\n[Language Settings 🌐](command:workbench.action.configureLocale)\nLaunch R Studio:\n[R Studio](command:cs50.launchRStudio)\nLaunch noVNC client to view your GUI program:\n[GUI](command:cs50.launchGUI)\nReset your terminal if it doesn't look right:\n[Reset Terminal](command:cs50.resetTerminal)\nUpdate or Rebuild your Codespace:\n[Update Codespace](command:cs50.updateCodespace)\n[Rebuild Codespace](command:github.codespaces.rebuildEnvironment)\nSync all changes to your backing repository forcefully via 'git push --force'.\nOnly if you feel it necessary to force sync your current changes to your remote repository:\n[Force Sync Changes](command:cs50.syncChanges)\nIf your Codespace has stopped syncing with its backing repository due to git operation errors (e.g., files larger than 100M were added to commit history), you may want to perform a repository cleanup.\n[WARNING] Make sure you have a backup of your important files before using this tool:\n[Cleanup Repository](command:cs50.cleanupRepository)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/tcp-port-used": "^1.0.4",
"@types/vscode": "^1.85.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/vsce": "^2.23.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/react": "^18.2.55",
"axios": "^1.6.7",
"tcp-port-used": "^1.0.2",
"ws": "^8.16.0"
}
}