package.json 605 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "language-shellscript",
  3. "version": "0.28.2",
  4. "main": "lib/main",
  5. "description": "ShellScript language support in Atom",
  6. "keywords": [
  7. "tree-sitter"
  8. ],
  9. "engines": {
  10. "atom": "*",
  11. "node": ">=12"
  12. },
  13. "repository": "https://github.com/pulsar-edit/pulsar",
  14. "license": "MIT",
  15. "dependencies": {
  16. "tree-sitter-bash": "0.19.0"
  17. },
  18. "consumedServices": {
  19. "hyperlink.injection": {
  20. "versions": {
  21. "0.1.0": "consumeHyperlinkInjection"
  22. }
  23. },
  24. "todo.injection": {
  25. "versions": {
  26. "0.1.0": "consumeTodoInjection"
  27. }
  28. }
  29. }
  30. }