94 lines
1.9 KiB
JSON
94 lines
1.9 KiB
JSON
{
|
|
"name": "nx-post-support",
|
|
"displayName": "NX Postprocessor Support",
|
|
"description": "",
|
|
"version": "0.3.0",
|
|
"publisher": "Christoph",
|
|
"serverInfo": {
|
|
"name": "NX Postprocessor Support",
|
|
"module": "nx-post-support"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cbsk-tech.de/Christoph/nx_post_support.git"
|
|
},
|
|
"main": "./dist/extension.js",
|
|
"keywords": [
|
|
"cdl",
|
|
"NX CDL",
|
|
"UDE"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.96.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "tcl",
|
|
"aliases": [
|
|
"NX TCL",
|
|
"tcl"
|
|
],
|
|
"extensions": [
|
|
".tcl"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
},
|
|
{
|
|
"id": "cdl",
|
|
"aliases": [
|
|
"NX CDL",
|
|
"cdl"
|
|
],
|
|
"extensions": [
|
|
".cdl"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
},
|
|
{
|
|
"id": "def",
|
|
"aliases": [
|
|
"NX DEF",
|
|
"def"
|
|
],
|
|
"extensions": [
|
|
".def"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "tcl",
|
|
"scopeName": "source.tcl",
|
|
"path": "./syntaxes/tcl.tmLanguage.json"
|
|
},
|
|
{
|
|
"language": "cdl",
|
|
"scopeName": "source.cdl",
|
|
"path": "./syntaxes/cdl.tmLanguage.json"
|
|
},
|
|
{
|
|
"language": "def",
|
|
"scopeName": "source.def",
|
|
"path": "./syntaxes/def.tmLanguage.json"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"compile": "node esbuild.js --production",
|
|
"watch": "node esbuild.js --watch",
|
|
"package": "node esbuild.js --production"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.96.0",
|
|
"@vscode/vsce": "^3.2.1",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.25.6",
|
|
"prettier": "^3.4.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
} |