package.json•1.29 kB
{
"name": "caisse-enregistreuse-mcp-server",
"version": "1.3.1",
"description": "MCP server exposing caisse.enregistreuse.fr API as tools",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node build/index.js",
"start:stdio": "node build/stdio.js",
"start:http": "node build/index.js --http",
"generate:manifest": "node scripts/generate-manifest.mjs",
"test": "node tests/quick.test.mjs",
"start:fr": "MCP_LANG=fr node build/index.js",
"start:en": "MCP_LANG=en node build/index.js",
"prepublishOnly": "npm run build"
},
"bin": {
"caisse-mcp": "./build/cli.js"
},
"files": [
"build",
"static",
"locales",
"manifest.en.json",
"manifest.fr.json",
"manifest.template.json",
"scripts/generate-manifest.mjs",
"README.md"
],
"engines": {
"node": ">=18.17"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ioredis": "^5.3.2",
"jose": "^6.1.0",
"undici": "^6.19.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.8.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
}
}