74 lines
1.8 KiB
JSON
74 lines
1.8 KiB
JSON
{
|
|
"name": "vue2-grammar",
|
|
"displayName": "SWMF Configuration",
|
|
"description": "Syntax highlights and outline view for SWMF configuration files",
|
|
"version": "1.0.1",
|
|
"publisher": "svaberg",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.miqra.nl/pmkuipers/vue2-grammar.git"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.74.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages",
|
|
"Formatters"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:swmf-config"
|
|
],
|
|
"icon": "images/icon.png",
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"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"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"pretest": "npm run compile && npm run lint",
|
|
"lint": "eslint src --ext ts",
|
|
"test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^8.0.0",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "16.x",
|
|
"@types/vscode": "^1.74.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"@typescript-eslint/parser": "^5.48.2",
|
|
"@vscode/test-electron": "^2.2.0",
|
|
"eslint": "^8.28.0",
|
|
"glob": "^8.0.3",
|
|
"mocha": "^10.1.0",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"bugs": {
|
|
"url": "https://git.miqra.nl/pmkuipers/vue2-grammar/issues"
|
|
},
|
|
"homepage": "https://git.miqra.nl/pmkuipers/vue2-grammar#readme",
|
|
"author": "Dag Evensberget"
|
|
}
|