-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
121 lines (121 loc) Β· 2.9 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
118
119
120
121
{
"name": "slides",
"version": "4.2.1",
"displayName": "Slides",
"publisher": "nicoespeon",
"description": "VS Code as a presentation tool",
"author": "Nicolas Carlo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nicoespeon/vscode-slides.git"
},
"homepage": "https://github.com/nicoespeon/vscode-slides",
"bugs": "https://github.com/nicoespeon/vscode-slides/issues",
"keywords": [
"slides",
"presentation",
"conference",
"meetup",
"talk",
"keybindings"
],
"categories": [
"Themes",
"Other"
],
"icon": "assets/logo.png",
"galleryBanner": {
"theme": "light"
},
"engines": {
"vscode": "^1.39.0",
"node": "16"
},
"main": "./out/extension.js",
"scripts": {
"test": "jest",
"build": "webpack --mode none",
"watch": "webpack --mode none --watch",
"prepackage": "rm -rf dist/*.vsix && rm -rf out/",
"vscode:prepublish": "webpack --mode production",
"package": "vsce package",
"postpackage": "mkdir -p dist && mv *.vsix dist",
"package:install": "code --install-extension dist/*.vsix"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "24.0.13",
"@types/node": "10.12.21",
"@types/vscode": "1.39.0",
"husky": "3.0.9",
"jest": "24.9.0",
"prettier": "1.18.2",
"pretty-quick": "2.0.0",
"ts-jest": "24.1.0",
"ts-loader": "6.0.4",
"tslint": "5.20.0",
"typescript": "3.6.4",
"vsce": "1.68.0",
"vscode-test": "1.2.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.9"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "slides.toggle",
"title": "Toggle Slides mode"
}
],
"keybindings": [
{
"command": "slides.toggle",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p"
},
{
"command": "slides.previous",
"key": "ctrl+shift+alt+left",
"mac": "cmd+left"
},
{
"command": "slides.next",
"key": "ctrl+shift+alt+right",
"mac": "cmd+right"
},
{
"command": "slides.exit",
"key": "ctrl+escape",
"mac": "cmd+escape"
}
],
"configuration": {
"title": "Slides",
"properties": {
"slides.previewMarkdownFiles": {
"type": "boolean",
"default": false,
"description": "Use the Markdown Preview pane to view Markdown files."
},
"slides.folder": {
"type": "string",
"default": "",
"description": "Project subfolder where the slides are located."
},
"slides.vscodeSettings": {
"type": "object",
"default": {},
"description": "VS Code settings you want to set in presentation mode."
}
}
}
}
}