{ "name": "apple-voice-memo-mcp", "version": "0.1.0", "description": "MCP server for interacting with Apple Voice Memos on macOS", "type": "module", "main": "dist/index.js", "bin": { "apple-voice-memo-mcp": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "prepare": "npm run build", "prepublishOnly": "npm run lint && npm run test", "inspector": "npx @modelcontextprotocol/inspector node dist/index.js" }, "keywords": [ "mcp", "voice-memos", "apple", "macos", "transcription", "claude", "ai" ], "author": "John Wulff", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/jwulff/apple-voice-memo-mcp.git" }, "bugs": { "url": "https://github.com/jwulff/apple-voice-memo-mcp/issues" }, "homepage": "https://github.com/jwulff/apple-voice-memo-mcp#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "better-sqlite3": "^11.0.0", "zod": "^3.25.0" }, "devDependencies": { "@types/better-sqlite3": "^7.6.11", "@types/node": "^22.0.0", "@vitest/coverage-v8": "^2.1.9", "eslint": "^9.0.0", "prettier": "^3.0.0", "typescript": "^5.7.0", "typescript-eslint": "^8.0.0", "vitest": "^2.0.0" }, "files": [ "dist", "README.md", "LICENSE" ] }