package.json•1.19 kB
{
"name": "withings-mcp",
"version": "1.0.0",
"description": "MCP client for retrieving data from Withings smart scale",
"main": "bin/index.js",
"bin": "./bin/cli.js",
"scripts": {
"build": "tsc",
"dev": "bun src/index.ts",
"start": "bun src/index.ts",
"tokens": "bun src/login.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"keywords": [
"mcp",
"withings",
"health",
"scale",
"body-composition"
],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^24.4.0",
"@types/open": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"bun-types": "^1.2.22",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"axios": "^1.12.2",
"dotenv": "^17.2.2",
"open": "^10.2.0",
"typescript": "^5.9.2"
}
}