package.json•1.22 kB
{
"name": "superprecio-mcp",
"version": "1.0.0",
"description": "MCP Server for Superprecio - Price comparison assistant for Argentina supermarkets (expanding to Latin America)",
"author": "Diego Pacheco",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bunkerapps/superprecio_mcp.git"
},
"bugs": {
"url": "https://github.com/bunkerapps/superprecio_mcp/issues"
},
"homepage": "https://github.com/bunkerapps/superprecio_mcp#readme",
"type": "module",
"bin": {
"superprecio-mcp": "./build/index.js"
},
"main": "./build/index.js",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepare": "npm run build",
"start": "node build/index.js",
"test": "node test-connection.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"superprecio",
"price-comparison",
"argentina",
"latin-america",
"supermarkets",
"precios"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}