64 lines
1.3 KiB
JSON
64 lines
1.3 KiB
JSON
{
|
|
"name": "nub",
|
|
"displayName": "Nub Language Support",
|
|
"description": "Language server client for nub lang",
|
|
"version": "0.0.0",
|
|
"publisher": "nub31",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.oliste.no/nub31/nub-lang"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.105.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "nub",
|
|
"extensions": [
|
|
".nub"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "nub",
|
|
"scopeName": "source.nub",
|
|
"path": "./syntaxes/nub.tmLanguage.json"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "nub.openOutput",
|
|
"title": "Nub: Show Output",
|
|
"icon": "$(open-preview)"
|
|
}
|
|
],
|
|
"menus": {
|
|
"editor/title": [
|
|
{
|
|
"command": "nub.openOutput",
|
|
"when": "editorLangId == nub || resourceExtname == .nub",
|
|
"group": "navigation"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.x",
|
|
"@types/vscode": "^1.105.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^9.0.1"
|
|
}
|
|
} |