12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "vhdl-tool",
- "displayName": "VHDL Language Server",
- "description": "Language Server Protocol for VHDL via VHDL-Tool",
- "version": "0.0.7",
- "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.26.0"
- },
- "categories": [
- "Programming Languages",
- "Linters"
- ],
- "activationEvents": [
- "onLanguage:vhdl"
- ],
- "main": "./out/src/extension",
- "scripts": {
- "vscode:prepublish": "tsc -p ./",
- "compile": "tsc -watch -p ./",
- "postinstall": "node ./node_modules/vscode/bin/install"
- },
- "dependencies": {
- "vscode-languageclient": "^6.1.3"
- },
- "devDependencies": {
- "typescript": "^3.5.1",
- "vscode": "^1.1.34",
- "@types/mocha": "^5.2.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."
- }
- }
- }
- }
- }
|