mirror of
https://github.com/michaelgale/ldraw-vscode.git
synced 2026-09-14 10:34:43 +00:00
27 lines
744 B
JSON
27 lines
744 B
JSON
{
|
|
"name": "ldraw",
|
|
"displayName": "LDraw",
|
|
"version": "0.2.0",
|
|
"engines": {
|
|
"vscode": ">=0.9.0-pre.1"
|
|
},
|
|
"publisher": "BrickDimensions",
|
|
"homepage": "https://github.com/michaelgale/ldraw-vscode/blob/master/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/michaelgale/ldraw-vscode.git"
|
|
},
|
|
"icon": "images/icon.png",
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "ldraw",
|
|
"aliases": ["LDraw", "ldr"],
|
|
"extensions": [".ldr",".dat",".mpd"]
|
|
}],
|
|
"grammars": [{
|
|
"language": "ldraw",
|
|
"scopeName": "source.ldraw",
|
|
"path": "./syntaxes/ldraw.tmLanguage.json"
|
|
}]
|
|
}
|
|
} |