package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "vhdl-tool",
  3. "displayName": "VHDL Language Server",
  4. "description": "Language Server Protocol for VHDL via VHDL-Tool",
  5. "version": "0.0.9",
  6. "license": "MIT",
  7. "publisher": "vhdl-tool",
  8. "homepage": "https://www.vhdltool.com",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://git.vhdltool.com/vhdl-tool/vhdltool-vscode"
  12. },
  13. "bugs": {
  14. "url": "https://git.vhdltool.com/vhdl-tool/vhdl-tool/issues"
  15. },
  16. "engines": {
  17. "vscode": "^1.63.0"
  18. },
  19. "categories": [
  20. "Programming Languages",
  21. "Linters"
  22. ],
  23. "activationEvents": [
  24. "onLanguage:vhdl"
  25. ],
  26. "main": "./out/src/extension",
  27. "scripts": {
  28. "vscode:prepublish": "tsc -p ./",
  29. "compile": "tsc -watch -p ./"
  30. },
  31. "dependencies": {
  32. "vscode-languageclient": "^7.0.0"
  33. },
  34. "devDependencies": {
  35. "typescript": "^3.5.1",
  36. "@types/vscode": "^1.63.0",
  37. "@types/node": "^8.0.0"
  38. },
  39. "contributes": {
  40. "configuration": {
  41. "type": "object",
  42. "title": "VHDL-Tool",
  43. "properties": {
  44. "vhdltool.trace.server": {
  45. "scope": "window",
  46. "type": "string",
  47. "enum": [
  48. "off",
  49. "messages",
  50. "verbose"
  51. ],
  52. "default": "off",
  53. "description": "Traces the communication between VS Code and the language server."
  54. }
  55. }
  56. }
  57. }
  58. }