package.json•1.34 kB
{
"name": "mcp-instagram",
"version": "0.0.2",
"description": "MCP server for Instagram",
"type": "module",
"main": "build/server.js",
"bin": {
"mcp-instagram": "./bin/insta-mcp.js"
},
"scripts": {
"build": "tsc",
"start": "node build/server.js",
"dev": "tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:manual": "npm run build && node build/test-manual.js"
},
"keywords": [
"mcp",
"model-context-protocol"
],
"author": {
"name": "Anand Kamble",
"email": "amkamble@icloud.com",
"url": "https://anand-kamble.github.io/"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/anand-kamble/mcp-instagram.git"
},
"bugs": {
"url": "https://github.com/anand-kamble/mcp-instagram/issues"
},
"homepage": "https://github.com/anand-kamble/mcp-instagram#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"instagram-private-api": "^1.46.1",
"re2": "^1.22.3"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}