package.json 888 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "command-palette",
  3. "version": "0.43.5",
  4. "main": "./lib/command-palette-package",
  5. "description": "Find and run available commands using `cmd-shift-p` (macOS) or `ctrl-shift-p` (Linux/Windows).",
  6. "activationCommands": {
  7. "atom-workspace": [
  8. "command-palette:toggle"
  9. ]
  10. },
  11. "repository": "https://github.com/pulsar-edit/pulsar",
  12. "license": "MIT",
  13. "engines": {
  14. "atom": "*"
  15. },
  16. "atomTestRunner": "atom-mocha-test-runner",
  17. "dependencies": {
  18. "atom-select-list": "^0.7.1",
  19. "underscore-plus": "^1.0.0"
  20. },
  21. "devDependencies": {
  22. "atom-mocha-test-runner": "^0.3.0",
  23. "event-kit": "^2.4.0",
  24. "semver": "^5.4.1",
  25. "sinon": "^3.2.1"
  26. },
  27. "configSchema": {
  28. "preserveLastSearch": {
  29. "type": "boolean",
  30. "default": false,
  31. "description": "Preserve the last search when reopening the command palette."
  32. }
  33. }
  34. }