Files
wehub-resource-sync fdedcf53bb
Basic checks / Compilation, Unit and Integration Tests (push) Waiting to run
Basic checks / Hygiene and Layering (push) Waiting to run
Basic checks / Warm up node modules cache (push) Waiting to run
Check Format and Lint / lint-and-format (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:36:35 +08:00

45 lines
995 B
JSON

{
"name": "lua",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": {
"vscode": "*"
},
"scripts": {
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin sumneko/lua.tmbundle Syntaxes/Lua.plist ./syntaxes/lua.tmLanguage.json"
},
"categories": ["Programming Languages"],
"contributes": {
"languages": [
{
"id": "lua",
"extensions": [
".lua"
],
"aliases": [
"Lua",
"lua"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lua",
"scopeName": "source.lua",
"path": "./syntaxes/lua.tmLanguage.json",
"tokenTypes": {
"comment.line.double-dash.doc.lua": "other"
}
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}