package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "apple-mail-mcp",
  3. "version": "1.0.0",
  4. "description": "MCP server for Apple Mail - read, search, send, and manage emails via Claude",
  5. "type": "module",
  6. "main": "build/index.js",
  7. "types": "build/index.d.ts",
  8. "bin": {
  9. "apple-mail-mcp": "build/index.js"
  10. },
  11. "files": [
  12. "build",
  13. "README.md",
  14. "LICENSE"
  15. ],
  16. "scripts": {
  17. "build": "tsc && tsc-alias",
  18. "start": "node build/index.js",
  19. "dev": "tsc --watch",
  20. "test": "vitest run",
  21. "test:watch": "vitest",
  22. "test:coverage": "vitest run --coverage",
  23. "lint": "eslint src",
  24. "lint:fix": "eslint src --fix",
  25. "format": "prettier --write src",
  26. "format:check": "prettier --check src",
  27. "typecheck": "tsc --noEmit",
  28. "prepublishOnly": "npm run lint && npm run test && npm run build",
  29. "prepare": "husky"
  30. },
  31. "keywords": [
  32. "mcp",
  33. "apple-mail",
  34. "claude",
  35. "ai",
  36. "applescript",
  37. "macos",
  38. "email",
  39. "model-context-protocol"
  40. ],
  41. "author": "Rob Sweet <rob@superiortech.io>",
  42. "license": "MIT",
  43. "repository": {
  44. "type": "git",
  45. "url": "git+https://github.com/sweetrb/apple-mail-mcp.git"
  46. },
  47. "homepage": "https://github.com/sweetrb/apple-mail-mcp#readme",
  48. "bugs": {
  49. "url": "https://github.com/sweetrb/apple-mail-mcp/issues"
  50. },
  51. "engines": {
  52. "node": ">=20.0.0"
  53. },
  54. "os": [
  55. "darwin"
  56. ],
  57. "dependencies": {
  58. "@modelcontextprotocol/sdk": "1.4.1",
  59. "zod": "^3.22.4"
  60. },
  61. "devDependencies": {
  62. "@types/node": "^20.0.0",
  63. "@typescript-eslint/eslint-plugin": "^8.0.0",
  64. "@typescript-eslint/parser": "^8.0.0",
  65. "@vitest/coverage-v8": "^2.1.9",
  66. "eslint": "^9.0.0",
  67. "globals": "^17.0.0",
  68. "husky": "^9.1.7",
  69. "lint-staged": "^16.2.7",
  70. "prettier": "^3.0.0",
  71. "tsc-alias": "^1.8.10",
  72. "tsconfig-paths": "^4.2.0",
  73. "typescript": "^5.0.0",
  74. "typescript-eslint": "^8.51.0",
  75. "vitest": "^2.0.0"
  76. },
  77. "volta": {
  78. "node": "22.13.1"
  79. },
  80. "lint-staged": {
  81. "src/**/*.ts": [
  82. "eslint --fix",
  83. "prettier --write"
  84. ]
  85. }
  86. }