package.json 727 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "archive-view",
  3. "version": "0.66.0",
  4. "description": "View the files and folders inside archive files",
  5. "main": "./lib/archive-editor",
  6. "dependencies": {
  7. "etch": "^0.14.1",
  8. "humanize-plus": "~1.8.2",
  9. "ls-archive": "1.3.4",
  10. "temp": "^0.9.4"
  11. },
  12. "repository": "https://github.com/pulsar-edit/pulsar",
  13. "license": "MIT",
  14. "engines": {
  15. "atom": "*"
  16. },
  17. "deserializers": {
  18. "ArchiveEditor": "deserialize",
  19. "ArchiveEditorView": "deserialize"
  20. },
  21. "consumedServices": {
  22. "atom.file-icons": {
  23. "versions": {
  24. "1.0.0": "consumeFileIcons"
  25. }
  26. },
  27. "file-icons.element-icons": {
  28. "versions": {
  29. "1.0.0": "consumeElementIcons"
  30. }
  31. }
  32. }
  33. }