Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/lua/package.json
3309 views
1
{
2
"name": "lua",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin sumneko/lua.tmbundle Syntaxes/Lua.plist ./syntaxes/lua.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "lua",
19
"extensions": [
20
".lua"
21
],
22
"aliases": [
23
"Lua",
24
"lua"
25
],
26
"configuration": "./language-configuration.json"
27
}
28
],
29
"grammars": [
30
{
31
"language": "lua",
32
"scopeName": "source.lua",
33
"path": "./syntaxes/lua.tmLanguage.json",
34
"tokenTypes": {
35
"comment.line.double-dash.doc.lua": "other"
36
}
37
}
38
]
39
},
40
"repository": {
41
"type": "git",
42
"url": "https://github.com/microsoft/vscode.git"
43
}
44
}
45
46