-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
{
"name": "unicode-latex",
"displayName": "Unicode Latex",
"description": "Insert unicode symbols for latex names",
"version": "1.2.0",
"publisher": "oijaz",
"author": {
"name": "Omer Sheikh"
},
"repository": "oijazsh/unicode-latex",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:unicode-latex.insertMathSymbol",
"onCommand:unicode-latex.replaceLatexNames",
"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"
}
],
"configuration": {
"type": "object",
"title": "Unicode Latex",
"properties": {
"unicode-latex.extensions": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"plaintext",
"markdown",
"coq"
],
"description": "Enable \\ completion for these extensions"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@types/vscode": "^1.74.0",
"typescript": "^4.9.0"
}
}