package.json 713 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "pulsar-updater",
  3. "version": "1.0.0",
  4. "description": "Detect Pulsar updates on Launch.",
  5. "main": "./src/main.js",
  6. "scripts": {
  7. "test": "pulsar --test spec"
  8. },
  9. "engines": {
  10. "atom": ">=1.106.0 <2.0.0"
  11. },
  12. "author": "confused-Techie",
  13. "license": "MIT",
  14. "repository": "https://github.com/pulsar-edit/pulsar",
  15. "dependencies": {
  16. "event-kit": "github:pulsar-edit/event-kit",
  17. "shelljs": "^0.8.5",
  18. "superagent": "^8.0.9",
  19. "winreg": "^1.2.4"
  20. },
  21. "configSchema": {
  22. "checkForUpdatesOnLaunch": {
  23. "type": "boolean",
  24. "default": true,
  25. "description": "If Pulsar Updater should check for an update to Pulsar as soon as Pulsar launches."
  26. }
  27. }
  28. }