package.json•853 B
{
"name": "linkedin-scraper-mcp-server",
"version": "0.2.0",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"linkedin-scraper-mcp": "dist/src/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/src/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/src/index.js",
"start:stdio": "node dist/src/index.js --stdio",
"dev": "tsc && node dist/src/index.js",
"dev:stdio": "tsc && node dist/src/index.js --stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"selenium-webdriver": "^4.15.0",
"webdriver-manager": "^12.1.8",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/selenium-webdriver": "^4.1.17",
"typescript": "^5.0.0",
"shx": "^0.3.4"
}
}