{
  "name": "apple-notes-mcp",
  "version": "2.8.17",
  "description": "MCP server for Apple Notes - create, search, update, and manage notes via Claude and other AI assistants",
  "type": "module",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "bin": {
    "apple-notes-mcp": "build/index.js"
  },
  "files": [
    "build",
    "docs",
    "shortcuts",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "mcp",
    "apple-notes",
    "claude",
    "codex",
    "ai",
    "applescript",
    "macos",
    "notes",
    "model-context-protocol"
  ],
  "author": "Rob Sweet <rob@superiortech.io>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sweetrb/apple-notes-mcp.git"
  },
  "homepage": "https://github.com/sweetrb/apple-notes-mcp#readme",
  "bugs": {
    "url": "https://github.com/sweetrb/apple-notes-mcp/issues"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "os": [
    "darwin"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "turndown": "^7.2.2",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@eslint/js": "^9.0.0",
    "@types/node": "^20.0.0",
    "@types/turndown": "^5.0.6",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^4.1.11",
    "ajv": "^8.17.1",
    "esbuild": "^0.28.1",
    "eslint": "^9.0.0",
    "globals": "^17.0.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "prettier": "^3.0.0",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.0.0",
    "typescript-eslint": "^8.51.0",
    "vitest": "^4.1.11"
  },
  "volta": {
    "node": "24.17.0"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "scripts": {
    "preinstall": "node -e \"const fs=require('fs');const ua=process.env.npm_config_user_agent||'';if(fs.existsSync('.git')&&!ua.startsWith('pnpm')){console.error('\\nThis repo uses pnpm. npm/yarn resolve dependencies off-lockfile and the committed bundle will mismatch CI.\\n\\n  corepack enable && pnpm install --frozen-lockfile\\n');process.exit(1)}\"",
    "build": "tsc --noEmit && esbuild src/index.ts --bundle --platform=node --format=esm --target=node20 --outfile=build/index.js --banner:js=\"import { createRequire as __createRequire } from 'node:module'; const require = __createRequire(import.meta.url);\"",
    "start": "node build/index.js",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:all": "vitest run && vitest run --config vitest.integration.config.ts",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "format": "prettier --write src",
    "format:check": "prettier --check src",
    "typecheck": "tsc --noEmit",
    "sync:skills": "node scripts/sync-skills.mjs",
    "version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin .agents/plugins codex .antigravity-plugin"
  }
}