vue2-grammar/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2019-11-26 14:02:14 +01:00
{
2019-11-28 06:37:37 +01:00
"name": "swmf-grammar",
2019-12-02 05:05:47 +01:00
"displayName": "SWMF Configuration",
2019-12-02 03:24:52 +01:00
"description": "Syntax highlights and outline view for SWMF configuration files",
2019-12-02 05:45:27 +01:00
"version": "0.2.8",
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-12-02 03:24:52 +01:00
"license": "MIT License",
2019-11-26 14:02:14 +01:00
"engines": {
"vscode": "^1.40.0"
},
"categories": [
2019-12-02 03:24:52 +01:00
"Programming Languages",
"Formatters"
2019-11-26 14:02:14 +01:00
],
2019-12-02 05:05:47 +01:00
"icon": "images/icon.png",
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 ./",
2019-12-02 03:24:52 +01:00
"watch": "tsc -watch -p ./"
2019-11-29 07:53:01 +01:00
},
2019-12-01 10:16:38 +01:00
"devDependencies": {
2019-12-02 03:24:52 +01:00
"typescript": "^3.7.2",
2019-12-02 01:34:17 +01:00
"vscode": "^1.1.36"
2019-11-26 14:02:14 +01:00
}
2019-11-28 06:37:37 +01:00
}