-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "help50",
"displayName": "Help50",
"description": "",
"version": "0.0.1",
"publisher": "CS50",
"repository": "https://github.com/cs50/help50.vsix",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Education"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "help50.showButton",
"title": "Show Help50 Button"
},
{
"command": "help50.hideButton",
"title": "Hide Help50 Button"
},
{
"command": "help50.askForHelp",
"title": "help50"
}
],
"menus": {
"view/title": [
{
"command": "help50.askForHelp",
"group": "navigation@-50",
"when": "view == terminal && help50:didActivateButton"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.94.0",
"@types/mocha": "^10.0.8",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"typescript": "^5.6.2",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}