-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
191 lines (191 loc) · 5.88 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"name": "emojisense",
"private": true,
"displayName": ":emojisense:",
"description": "Adds suggestions and autocomplete for emoji",
"version": "0.10.0",
"publisher": "bierner",
"icon": "media/icon.png",
"license": "MIT",
"extensionKind": [
"ui",
"workspace"
],
"keywords": [
"emoji",
"emojis",
"emoticon",
"emoticons"
],
"engines": {
"vscode": "^1.75.0"
},
"repository": {
"url": "https://github.com/mattbierner/vscode-emojisense.git"
},
"bugs": {
"url": "https://github.com/mattbierner/vscode-emojisense/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension",
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "emojisense.quickEmoji",
"title": "Pick an emoji and insert in editor",
"category": "Emojisense"
},
{
"command": "emojisense.quickEmojitext",
"title": "Pick an :emoji: and insert in editor",
"category": "Emojisense"
},
{
"command": "emojisense.quickEmojiTerminal",
"title": "Pick an emoji and insert in terminal",
"category": "Emojisense"
},
{
"command": "emojisense.quickEmojitextTerminal",
"title": "Pick an :emoji: and insert in terminal",
"category": "Emojisense"
}
],
"menus": {
"commandPalette": [
{
"command": "emojisense.quickEmojiTerminal",
"when": "panelFocus && activeViewlet == 'workbench.panel.terminal'"
},
{
"command": "emojisense.quickEmojitextTerminal",
"when": "panelFocus && activeViewlet == 'workbench.panel.terminal'"
}
]
},
"keybindings": [
{
"mac": "cmd+i",
"key": "ctrl+i",
"linux": "ctrl+alt+i",
"command": "emojisense.quickEmojiTerminal",
"when": "terminalFocus"
},
{
"mac": "shift+cmd+i",
"key": "shift+ctrl+i",
"linux": "shift+ctrl+alt+i",
"command": "emojisense.quickEmojitextTerminal",
"when": "terminalFocus"
},
{
"mac": "cmd+i",
"key": "ctrl+i",
"command": "emojisense.quickEmoji",
"when": "editorTextFocus"
},
{
"mac": "shift+cmd+i",
"key": "shift+ctrl+i",
"command": "emojisense.quickEmojitext",
"when": "editorTextFocus"
}
],
"configuration": {
"title": ":emojisense:",
"properties": {
"emojisense.unicodeCompletionsEnabled": {
"type": "boolean",
"markdownDescription": "Enable completions that insert emoji as unicode, i.e. `:smile_cat:` -> 😸",
"default": true
},
"emojisense.markupCompletionsEnabled": {
"type": "boolean",
"markdownDescription": "Enable completions that insert emoji markup, i.e. `::smile_cat` -> `:smile_cat:`",
"default": true
},
"emojisense.showOnColon": {
"type": "boolean",
"description": "Should emoji completions automatically be shown when you type a colon?",
"default": true
},
"emojisense.emojiDecoratorsEnabled": {
"type": "boolean",
"description": "Enables or disables emoji decorators for emoji markup.",
"default": true
},
"emojisense.languages": {
"type": "object",
"description": "Controls which languages emojisense is active in. You can also customize emojisense settings per language.\nTo enable emojisense for all languages, use \"*\": true",
"default": {
"markdown": true,
"plaintext": {
"markupCompletionsEnabled": false,
"emojiDecoratorsEnabled": false
},
"scminput": true,
"git-commit": true
},
"additionalProperties": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"unicodeCompletionsEnabled": {
"type": "boolean",
"markdownDescription": "Enable completions that insert emoji as unicode, i.e. `:smile_cat:` -> 😸",
"default": false
},
"markupCompletionsEnabled": {
"type": "boolean",
"markdownDescription": "Enable completions that insert emoji markdown, i.e. `::smile_cat` -> `:smile_cat:`",
"default": false
},
"emojiDecoratorsEnabled": {
"type": "boolean",
"description": "Enables or disables emoji decorators for emoji markup.",
"default": false
}
}
}
]
}
}
}
}
},
"scripts": {
"compile": "webpack --config ./build/webpack.config.js",
"watch": "webpack --watch --config ./build/webpack.config.js",
"package": "webpack --mode production --config ./build/webpack.config.js",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"vscode:prepublish": "npm run package ; npm run package-web",
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js"
},
"devDependencies": {
"@types/node": "^18",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.42.0",
"process": "^0.11.10",
"ts-loader": "^9.2.5",
"typescript": "^5.1.3",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"gemoji": "^8.1.0"
}
}