1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "vhdl-tool",
- "displayName": "VHDL Language Server",
- "description": "Language Server Protocol for VHDL via VHDL-Tool",
- "version": "0.0.9",
- "license": "MIT",
- "publisher": "vhdl-tool",
- "homepage": "https://www.vhdltool.com",
- "repository": {
- "type": "git",
- "url": "https://git.vhdltool.com/vhdl-tool/vhdltool-vscode"
- },
- "bugs": {
- "url": "https://git.vhdltool.com/vhdl-tool/vhdl-tool/issues"
- },
- "engines": {
- "vscode": "^1.63.0"
- },
- "categories": [
- "Programming Languages",
- "Linters"
- ],
- "activationEvents": [
- "onLanguage:vhdl"
- ],
- "main": "./out/src/extension",
- "scripts": {
- "vscode:prepublish": "tsc -p ./",
- "compile": "tsc -watch -p ./"
- },
- "dependencies": {
- "vscode-languageclient": "^7.0.0"
- },
- "devDependencies": {
- "typescript": "^3.5.1",
- "@types/vscode": "^1.63.0",
- "@types/node": "^8.0.0"
- },
- "contributes": {
- "configuration": {
- "type": "object",
- "title": "VHDL-Tool",
- "properties": {
- "vhdltool.trace.server": {
- "scope": "window",
- "type": "string",
- "enum": [
- "off",
- "messages",
- "verbose"
- ],
- "default": "off",
- "description": "Traces the communication between VS Code and the language server."
- }
- }
- }
- }
- }
|