package.json•1.36 kB
{
"name": "superstore-mcp",
"version": "2.0.0",
"description": "MCP server for Real Canadian Superstore - Extract orders, products, and account data with authentication",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ai-protocols/superstore-mcp.git"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:manual": "node tests/test_*.js"
},
"bin": {
"superstore-mcp": "dist/index.js"
},
"keywords": [
"mcp",
"mcp-server",
"superstore",
"real-canadian-superstore",
"grocery",
"orders",
"products",
"web-scraping",
"ecommerce"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"jsdom": "^25.0.1",
"node-fetch": "^3.3.2",
"private-ip": "^3.0.2",
"puppeteer": "^22.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"tough-cookie": "^4.1.4",
"uri-js": "^4.4.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"shx": "0.4.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}