-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
69 lines (69 loc) · 2.94 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
{
"name": "unicode-math-vscode",
"displayName": "Fast Unicode Math Characters",
"description": "Easy insertion of unicode math symbols in ∀ programming languages",
"version": "0.3.5",
"publisher": "GuidoTapia2",
"license": "MIT",
"homepage": "https://picnet.com.au/artificial-intelligence/",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/gatapia/unicode-math-vscode"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Snippets"
],
"keywords": [
"unicode",
"math",
"symbols",
"shortcuts",
"snippets"
],
"activationEvents": ["onLanguage:abap","onLanguage:bat","onLanguage:bibtex","onLanguage:clojure","onLanguage:coffeescript","onLanguage:c","onLanguage:cpp","onLanguage:csharp","onLanguage:css","onLanguage:diff","onLanguage:dockerfile","onLanguage:fsharp","onLanguage:git-commit","onLanguage:git-rebase","onLanguage:go","onLanguage:groovy","onLanguage:handlebars","onLanguage:html","onLanguage:ini","onLanguage:java","onLanguage:javascript","onLanguage:javascriptreact","onLanguage:json","onLanguage:jsonc","onLanguage:latex","onLanguage:less","onLanguage:lua","onLanguage:makefile","onLanguage:markdown","onLanguage:objective-c","onLanguage:objective-cpp","onLanguage:perl","onLanguage:perl6","onLanguage:php","onLanguage:powershell","onLanguage:jade","onLanguage:python","onLanguage:r","onLanguage:razor","onLanguage:ruby","onLanguage:rust","onLanguage:scss","onLanguage:sass","onLanguage:shaderlab","onLanguage:shellscript","onLanguage:sql","onLanguage:swift","onLanguage:typescript","onLanguage:typescriptreact","onLanguage:tex","onLanguage:vb","onLanguage:xml","onLanguage:xsl","onLanguage:yaml","onLanguage:plaintext"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "unicode-math-vscode.symbols_html",
"title": "Unicode Math Symbols Guide",
"category": "Unicode Math"
}
],
"keybindings": [
{
"command": "unicode-math-vscode.commit_tab",
"key": "tab",
"when": "editorTextFocus && !inlineSuggestionVisible && !suggestWidgetVisible && !editorTabMovesFocus && !inSnippetMode && !hasSnippetCompletions && !editorTabMovesFocus && !editorReadonly"
},
{
"command": "unicode-math-vscode.commit_space",
"key": "space",
"when": "editorTextFocus && !editorTabMovesFocus && !inSnippetMode && !hasSnippetCompletions && !editorTabMovesFocus && !editorReadonly"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"capabilities": {
"completionProvider": {
"resolveProvider": true
}
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}