-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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": "mojo",
"displayName": "Mojo🔥",
"description": "This extension provides rich language support for the Mojo programming language in Visual Studio Code. Mojo is an innovative language that brings together the elegance of Python syntax with the power of systems programming and metaprogramming. With this extension, you can write portable code that's faster than C and seamlessly interoperate with the Python ecosystem. Whether you're coding in static or dynamic style, Mojo and this extension have you covered. Enjoy features like syntax highlighting, code navigation, snippets, and more, making your Mojo development in VS Code a breeze. Embrace the future of programming with Mojo.",
"version": "0.1.0",
"publisher": "igochkov",
"author": {
"name": "Ivaylo Gochkov",
"url": "/~https://github.com/igochkov"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.75.1"
},
"license": "MIT",
"categories": [
"Programming Languages"
],
"keywords": [
"mojo",
"Programming Language",
"AI",
"Python"
],
"repository": {
"type": "git",
"url": "/~https://github.com/igochkov/vscode-mojo.git"
},
"homepage": "/~https://github.com/igochkov/vscode-mojo",
"bugs": {
"url": "/~https://github.com/igochkov/vscode-mojo/issues"
},
"sponsor": {
"url": "/~https://github.com/sponsors/igochkov"
},
"contributes": {
"languages": [
{
"id": "mojo",
"aliases": [
"Mojo",
"mojo"
],
"extensions": [
".mojo",
".🔥"
],
"configuration": "./syntaxes/mojo.configuration.json"
}
],
"grammars": [
{
"language": "mojo",
"scopeName": "source.mojo",
"path": "./syntaxes/Mojo.tmLanguage.json"
},
{
"scopeName": "source.python",
"path": "./syntaxes/MagicPython.tmLanguage.json"
}
]
}
}