package.json•1.06 kB
{
"name": "servemyapi",
"version": "1.0.0",
"description": "Personal MCP server for securely storing and accessing API keys across projects using the macOS Keychain",
"type": "module",
"main": "dist/index.js",
"bin": {
"api-key": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "node dist/cli.js"
},
"keywords": ["mcp", "api", "keychain", "macos"],
"author": "James King",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"express": "^5.0.1",
"keytar": "^7.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"nodemon": "^3.1.9"
}
}