2019-11-26 14:02:14 +01:00
|
|
|
{
|
2019-11-28 06:37:37 +01:00
|
|
|
"name": "swmf-grammar",
|
|
|
|
"displayName": "swmf-grammar",
|
|
|
|
"description": "SWMF Configuration grammar for VS Code",
|
2019-11-26 14:02:14 +01:00
|
|
|
"version": "0.0.1",
|
2019-11-28 07:55:04 +01:00
|
|
|
"publisher": "svaberg",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-11-29 07:53:01 +01:00
|
|
|
"url": "https://github.com/svaberg/SWMF-grammar"
|
|
|
|
},
|
2019-11-26 14:02:14 +01:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.40.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Programming Languages"
|
|
|
|
],
|
2019-11-29 07:53:01 +01:00
|
|
|
"main": "./out/extension.js",
|
|
|
|
"activationEvents": [
|
|
|
|
"onLanguage:swmf-config"
|
|
|
|
],
|
2019-11-26 14:02:14 +01:00
|
|
|
"contributes": {
|
2019-11-28 07:55:04 +01:00
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "swmf-config",
|
|
|
|
"aliases": [
|
|
|
|
"SWMF Config",
|
|
|
|
"swmf"
|
|
|
|
],
|
|
|
|
"extensions": [
|
|
|
|
".in",
|
|
|
|
".IN"
|
|
|
|
],
|
|
|
|
"configuration": "./language-configuration.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"grammars": [
|
|
|
|
{
|
|
|
|
"language": "swmf-config",
|
|
|
|
"scopeName": "source.swmf",
|
|
|
|
"path": "./syntaxes/swmf.tmLanguage.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2019-11-29 07:53:01 +01:00
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
"pretest": "npm run compile",
|
|
|
|
"test": "node ./out/test/runTest.js"
|
|
|
|
},
|
2019-11-28 07:55:04 +01:00
|
|
|
"dependencies": {
|
2019-11-29 07:53:01 +01:00
|
|
|
"tsc": "^1.20150623.0",
|
|
|
|
"vsce": "^1.69.0",
|
|
|
|
"vscode-languageclient": "^5.1.0"
|
2019-11-26 14:02:14 +01:00
|
|
|
}
|
2019-11-28 06:37:37 +01:00
|
|
|
}
|