package.json 632 B

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