mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
118 lines
2.5 KiB
JSON
118 lines
2.5 KiB
JSON
{
|
|
"name": "godot-tools",
|
|
"displayName": "godot-tools",
|
|
"icon": "icon.png",
|
|
"version": "1.0.0",
|
|
"description": "Tools for game development with godot game engine",
|
|
"repository": "https://github.com/godotengine/godot-vscode-plugin",
|
|
"author": "The Godot Engine community",
|
|
"publisher": "geequlim",
|
|
"engines": {
|
|
"vscode": "^1.33.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"workspaceContains:project.godot",
|
|
"onLanguage:gdscript"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "tslint -p ./",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "godot-tool.open_editor",
|
|
"title": "Godot Tools: Open workspace with Godot editor"
|
|
},
|
|
{
|
|
"command": "godot-tool.run_project",
|
|
"title": "Godot Tools: Run workspace as Godot project"
|
|
},
|
|
{
|
|
"command": "godot-tool.list_native_classes",
|
|
"title": "Godot Tools: List native classes of godot"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Godot Tools configuration",
|
|
"properties": {
|
|
"godot_tools.gdscript_lsp_server_port": {
|
|
"type": "number",
|
|
"default": 6008,
|
|
"description": "The websocket server port of the GDScript language server"
|
|
},
|
|
"godot_tools.editor_path": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "The absolute path to the Godot editor executable"
|
|
},
|
|
"godot-tool.check_status": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Check the gdscript language server connection status"
|
|
}
|
|
}
|
|
},
|
|
"languages": [
|
|
{
|
|
"id": "gdscript",
|
|
"aliases": [
|
|
"GDScript",
|
|
"gdscript"
|
|
],
|
|
"extensions": [
|
|
".gd"
|
|
],
|
|
"configuration": "./configurations/gdscript-configuration.json"
|
|
},
|
|
{
|
|
"id": "properties",
|
|
"extensions": [
|
|
"cfg",
|
|
"tres",
|
|
"tscn",
|
|
"godot",
|
|
"gdns",
|
|
"gdnlib"
|
|
]
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "gdscript",
|
|
"scopeName": "source.gdscript",
|
|
"path": "./configurations/GDScript.tmLanguage.json"
|
|
}
|
|
],
|
|
"snippets": [
|
|
{
|
|
"language": "gdscript",
|
|
"path": "./configurations/snippets.json"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/marked": "^0.6.5",
|
|
"@types/mocha": "^2.2.42",
|
|
"@types/node": "^10.12.21",
|
|
"@types/prismjs": "^1.16.0",
|
|
"@types/ws": "^6.0.1",
|
|
"tslint": "^5.16.0",
|
|
"typescript": "^3.5.1",
|
|
"@types/vscode": "^1.40.0"
|
|
},
|
|
"dependencies": {
|
|
"global": "^4.4.0",
|
|
"marked": "^0.7.0",
|
|
"vscode-languageclient": "^5.2.1",
|
|
"ws": "^7.0.0"
|
|
}
|
|
}
|