-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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
{
"name": "unicode-latex",
"displayName": "Unicode Latex",
"description": "Insert unicode symbols for latex names",
"version": "1.1.2",
"publisher": "oijaz",
"author": {
"name": "Omer Sheikh"
},
"repository": "oijazsh/unicode-latex",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:unicode-latex.insertMathSymbol",
"onCommand:unicode-latex.replaceLatexNames",
"onCommand:unicode-latex.showLatexCode",
"onLanguage:plaintext"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "unicode-latex.insertMathSymbol",
"title": "Unicode: Insert Math Symbol"
},
{
"command": "unicode-latex.replaceLatexNames",
"title": "Unicode: Replace LaTeX"
},
{
"command": "unicode-latex.showLatexCode",
"title": "Unicode: Show LaTex Code"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.1.7",
"@types/node": "^6.0.40"
}
}