-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.62 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
{
"name": "vedic-syntax-highlighter",
"publisher": "vedic",
"displayName": "Vedic Syntax Highlighter",
"description": "vedic Syntax Highlighter extension for Visual Studio Code (VSCode).",
"version": "2.0.4",
"engines": {
"vscode": "^1.66.0"
},
"sponsor": {
"url": "https://github.com/sponsors/vedic-lang"
},
"icon": "images/logo.png",
"homepage": "https://github.com/vedic-lang/vedic-highlight-vscode",
"keywords": [
"vedic",
"syntax",
"highlighter",
"code editor",
"code",
"editor",
"vscode",
"vscode-extension",
"vscode-extensions",
"vscode-extension-pack"
],
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vedic-lang/vedic-highlight-vscode.git"
},
"author": {
"name": "ptprashanttripathi",
"email": "[email protected]",
"url": "https://twitter.com/PtPrashant09"
},
"preview": false,
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"galleryBanner": {
"color": "#ffdd00"
},
"license": "MIT",
"pricing": "Free",
"contributes": {
"languages": [
{
"id": "vedic",
"aliases": [
"vedic",
"vedic"
],
"extensions": [
".ved",
".v",
".veda",
".vedic"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vedic",
"scopeName": "source.vedic",
"path": "./syntaxes/vedic.tmLanguage.json"
}
]
}
}