mirror of
https://github.com/laosb/SvelteNova.git
synced 2025-11-29 04:31:37 +00:00
First release
This commit is contained in:
commit
fbc46d8f4b
17 changed files with 3131 additions and 0 deletions
46
SvelteNova.novaextension/extension.json
Normal file
46
SvelteNova.novaextension/extension.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue