package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "apple-mail-mcp",
  3. "version": "1.5.1",
  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:integration": "vitest run --config vitest.integration.config.ts",
  22. "test:all": "vitest run && vitest run --config vitest.integration.config.ts",
  23. "test:watch": "vitest",
  24. "test:coverage": "vitest run --coverage",
  25. "lint": "eslint src",
  26. "lint:fix": "eslint src --fix",
  27. "format": "prettier --write src",
  28. "format:check": "prettier --check src",
  29. "typecheck": "tsc --noEmit",
  30. "version": "node -e \"const p=require('./package.json'); const f='.claude-plugin/plugin.json'; const c=JSON.parse(require('fs').readFileSync(f,'utf8')); c.version=p.version; require('fs').writeFileSync(f,JSON.stringify(c,null,2)+'\\n')\" && git add .claude-plugin/plugin.json",
  31. "prepublishOnly": "npm run lint && npm run test && npm run build",
  32. "prepare": "husky"
  33. },
  34. "keywords": [
  35. "mcp",
  36. "apple-mail",
  37. "claude",
  38. "ai",
  39. "applescript",
  40. "macos",
  41. "email",
  42. "model-context-protocol"
  43. ],
  44. "author": "Rob Sweet <rob@superiortech.io>",
  45. "license": "MIT",
  46. "repository": {
  47. "type": "git",
  48. "url": "git+https://github.com/sweetrb/apple-mail-mcp.git"
  49. },
  50. "homepage": "https://github.com/sweetrb/apple-mail-mcp#readme",
  51. "bugs": {
  52. "url": "https://github.com/sweetrb/apple-mail-mcp/issues"
  53. },
  54. "engines": {
  55. "node": ">=20.0.0"
  56. },
  57. "os": [
  58. "darwin"
  59. ],
  60. "dependencies": {
  61. "@modelcontextprotocol/sdk": "1.4.1",
  62. "zod": "^3.22.4"
  63. },
  64. "devDependencies": {
  65. "@types/node": "^20.0.0",
  66. "@typescript-eslint/eslint-plugin": "^8.0.0",
  67. "@typescript-eslint/parser": "^8.0.0",
  68. "@vitest/coverage-v8": "^2.1.9",
  69. "eslint": "^9.0.0",
  70. "globals": "^17.0.0",
  71. "husky": "^9.1.7",
  72. "lint-staged": "^16.2.7",
  73. "prettier": "^3.0.0",
  74. "tsc-alias": "^1.8.10",
  75. "tsconfig-paths": "^4.2.0",
  76. "typescript": "^5.0.0",
  77. "typescript-eslint": "^8.51.0",
  78. "vitest": "^2.0.0"
  79. },
  80. "volta": {
  81. "node": "22.13.1"
  82. },
  83. "lint-staged": {
  84. "src/**/*.ts": [
  85. "eslint --fix",
  86. "prettier --write"
  87. ]
  88. }
  89. }