package.json•1.22 kB
{
"name": "server-perplexity-ask",
"version": "0.1.0",
"description": "MCP server for Perplexity API integration",
"keywords": [
"ai",
"perplexity",
"mcp",
"modelcontextprotocol"
],
"homepage": "https://modelcontextprotocol.io",
"bugs": {
"url": "https://github.com/modelcontextprotocol/servers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modelcontextprotocol/servers.git"
},
"license": "MIT",
"author": "Model Context Protocol (https://modelcontextprotocol.io)",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-perplexity-ask": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:stdio": "node dist/index.js --stdio",
"dev": "tsc && node dist/index.js",
"dev:stdio": "tsc && node dist/index.js --stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18"
}
}