-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.1 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
{
"name": "mathlingua-language-support",
"displayName": "Mathlingua Language Support",
"description": "Visual Studio Code language support for the Mathlingua language",
"version": "0.31.0",
"publisher": "dominickramer",
"author": {
"name": "Dominic Kramer"
},
"license": "SEE LICENSE IN LICENSE.txt",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/DominicKramer/mathlingua-language-support.git"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"math",
"maths",
"mathematics",
"mathematical",
"mathlore"
],
"contributes": {
"languages": [
{
"id": "mathlingua",
"aliases": [
"Mathlingua",
"mathlingua"
],
"extensions": [
".math"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mathlingua",
"scopeName": "source.math",
"path": "./syntaxes/mathlingua.tmLanguage.json"
}
],
"commands": [
{
"command": "mathlingua.preview",
"title": "Preview MathLingua code",
"category": "mathlingua",
"icon": {
"dark": "./vscode-icons/icons/dark/preview.svg",
"light": "./vscode-icons/icons/light/preview.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "mathlingua.preview",
"when": "true",
"group": "navigation"
}
]
},
"keybindings": [
{
"key": "Cmd+Shift+R",
"command": "mathlingua.preview"
},
{
"key": "Ctrl+Shift+R",
"command": "mathlingua.preview"
}
],
"configuration": {
"title": "MathLingua",
"properties": {
"mathlingua.autoOpenPreview": {
"type": "boolean",
"default": false,
"description": "Automatically open the preview panel when opening a .math file."
}
}
}
},
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"publish": "rm -Rf node_modules && rm -Rf out && rm -f *.vsix && npm install && npm run compile && vsce login dominickramer && vsce package && vsce publish",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"fix": "tslint --fix -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3",
"vsce": "^2.5.0",
"vscode": "^1.1.37"
}
}