提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
760 B

  1. {
  2. "name": "run-applescript",
  3. "version": "7.1.0",
  4. "description": "Run AppleScript and get the result",
  5. "license": "MIT",
  6. "repository": "sindresorhus/run-applescript",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "macos",
  31. "mac",
  32. "applescript",
  33. "osascript",
  34. "run",
  35. "execute"
  36. ],
  37. "devDependencies": {
  38. "ava": "^6.0.1",
  39. "tsd": "^0.30.0",
  40. "xo": "^0.56.0"
  41. }
  42. }