First release

This commit is contained in:
Shibo Lyu 2020-10-31 14:30:33 +00:00
commit fbc46d8f4b
17 changed files with 3131 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{
"identifier": "sb.lao.svelte-nova",
"name": "Svelte",
"organization": "Shibo Lyu",
"description": "LSP support for Svelte.",
"version": "0.1",
"categories": ["languages"],
"bugs": "https://github.com/laosb/SvelteNova/issues",
"repository": "https://github.com/laosb/SvelteNova",
"min_runtime": "2.0",
"main": "main.js",
"entitlements": {
"process": true,
"filesystem": "readwrite"
},
"activationEvents": ["onLanguage:svelte"],
"config": [
{
"key": "sb.lao.svelte-nova.language-server-path",
"title": "Svelte Language Server Path",
"type": "path",
"placeholder": "some /node_modules/.bin/svelteserver"
}
],
"commands": {
"extensions": [
{
"title": "Preferences",
"command": "sb.lao.svelte-nova.commands.openWorkspaceConfig"
},
{
"title": "Reload extension",
"command": "sb.lao.svelte-nova.commands.reload"
},
{
"title": "Force Unlock Dependency Installation",
"command": "sb.lao.svelte-nova.commands.forceClearLock"
}
]
}
}