-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.05 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
{
"name": "vscode-presentation-mode",
"displayName": "Presentation Mode",
"description": "Bring Presentation Mode to VS Code",
"icon": "images/presentation_mode.png",
"publisher": "CS50",
"repository": "https://github.com/cs50/presentation-mode.vsix",
"version": "1.0.5",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Education",
"Themes",
"Visualization"
],
"activationEvents": [
"onCommand:presentation-mode.toggle",
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"title": "Toggle Presentation Mode",
"command": "presentation-mode.toggle",
"category": "View"
},
{
"title": "Reset Presentation Mode",
"command": "presentation-mode.reset",
"category": "View"
}
],
"configuration": [
{
"title": "Presentation Mode Active Settings",
"properties": {
"presentation-mode.active": {
"type": "object",
"description": "Workspace customizations to be applied when presentation mode is active."
}
}
},
{
"title": "Presentation Mode Inactive Settings",
"properties": {
"presentation-mode.inactive": {
"type": "object",
"description": "Workspace customizations to be applied when presentation is not active."
}
}
},
{
"title": "User Workspace Settings Backup",
"properties": {
"presentation-mode.configBackup": {
"type": "object",
"description": "A backup of user's workspace configuration."
}
}
}
],
"keybindings": [
{
"key": "ctrl+alt+p",
"command": "presentation-mode.toggle"
},
{
"key": "ctrl+alt+r",
"command": "presentation-mode.reset"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "18.x",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.38.0",
"glob": "^10.0.0",
"mocha": "^10.2.0",
"typescript": "^5.0.4"
}
}