vscode/extensions/powershell/package.json

22 lines
662 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"name": "powershell",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "powershell",
"extensions": [ ".ps1", ".psm1", ".psd1", ".pssc", ".psrc" ],
2015-11-13 13:39:38 +00:00
"aliases": [ "PowerShell", "powershell", "ps", "ps1" ],
"configuration": "./language-configuration.json"
2015-11-13 13:39:38 +00:00
}],
"grammars": [{
"language": "powershell",
"scopeName": "source.powershell",
"path": "./syntaxes/PowershellSyntax.tmLanguage"
}]
2017-04-20 07:22:46 +00:00
},
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js SublimeText/PowerShell Support/PowershellSyntax.tmLanguage ./syntaxes/powershell.tmLanguage.json"
2015-11-13 13:39:38 +00:00
}
}