mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2026-01-03 01:48:11 +03:00
89 lines
1.8 KiB
JSON
89 lines
1.8 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/GodotExplorer/godot-tools",
|
|
"publisher": "geequlim",
|
|
"engines": {
|
|
"vscode": "^1.33.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"workspaceContains:project.godot",
|
|
"onLanguage:gdscript"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"vscode:prepublish": "yarn run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
|
|
},
|
|
"contributes": {
|
|
"commands": [],
|
|
"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 Langugae Protocol server"
|
|
}
|
|
}
|
|
},
|
|
"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/mocha": "^2.2.42",
|
|
"@types/node": "^10.12.21",
|
|
"@types/ws": "^6.0.1",
|
|
"tslint": "^5.16.0",
|
|
"typescript": "^3.4.5",
|
|
"vscode": "^1.1.33",
|
|
"vscode-languageclient": "^5.2.1",
|
|
"ws": "^7.0.0"
|
|
}
|
|
}
|