70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
|
"name": "prometeu-vscode-extension",
|
|
"displayName": "Prometeu VS Code Extension",
|
|
"description": "VS Code bridge for Prometeu Studio.",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"engines": {
|
|
"vscode": "^1.90.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:pbs"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "pbs",
|
|
"aliases": [
|
|
"PBS",
|
|
"Prometeu Base Script"
|
|
],
|
|
"extensions": [
|
|
".pbs",
|
|
".barrel"
|
|
]
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "prometeu.connectStudioLsp",
|
|
"title": "Prometeu: Connect to Studio LSP"
|
|
},
|
|
{
|
|
"command": "prometeu.restartStudioLsp",
|
|
"title": "Prometeu: Restart Studio LSP"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Prometeu",
|
|
"properties": {
|
|
"prometeu.studio.host": {
|
|
"type": "string",
|
|
"default": "127.0.0.1",
|
|
"description": "Prometeu Studio LSP host."
|
|
},
|
|
"prometeu.studio.port": {
|
|
"type": "number",
|
|
"default": 7775,
|
|
"description": "Prometeu Studio LSP TCP port."
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@types/vscode": "^1.90.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|