mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
39 lines
957 B
JSON
39 lines
957 B
JSON
{
|
|
"name": "config-lsp",
|
|
"description": "Language Features (completions, diagnostics, etc.) for your config files: gitconfig, fstab, aliases, hosts, wireguard, ssh_config, sshd_config, and more to come!",
|
|
"author": "Myzel394",
|
|
"version": "0.1.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Myzel394/config-lsp"
|
|
},
|
|
"publisher": "myzel394",
|
|
"categories": [],
|
|
"keywords": [],
|
|
"engines": {
|
|
"vscode": "^1.74.0"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:plaintext",
|
|
"onLanguage:yaml"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "tsc -b",
|
|
"watch": "tsc -b -w",
|
|
"lint": "eslint ./src --ext .ts,.tsx"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^22.7.4",
|
|
"@typescript-eslint/eslint-plugin": "^7.14.0",
|
|
"@typescript-eslint/parser": "^7.14.0",
|
|
"eslint": "^9.11.1",
|
|
"typescript": "^5.5.2",
|
|
"@types/vscode": "^1.74.0"
|
|
}
|
|
}
|