package.json•1.83 kB
{
"name": "smart-thinking-mcp",
"version": "11.0.6",
"description": "Un serveur MCP avancé pour le raisonnement multi-dimensionnel, adaptatif et collaboratif",
"main": "build/index.js",
"module": "./src/index.ts",
"bin": {
"smart-thinking-mcp": "build/cli.js"
},
"files": [
"build",
"scripts"
],
"scripts": {
"build": "tsc && node scripts/make-executable.js",
"prestart": "npm run build",
"dev": "ts-node src/cli.ts",
"watch": "tsc --watch",
"start": "node build/cli.js",
"start:http": "node build/cli.js --transport=http",
"start:sse": "node build/cli.js --transport=sse",
"lint": "eslint --max-warnings=0 --ext .ts src",
"test": "jest --runInBand",
"test:coverage": "jest --coverage",
"demo:session": "npm run build --silent && node build/examples/demo-session.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/make-executable.js"
},
"keywords": [
"mcp",
"claude",
"ai",
"reasoning",
"thinking",
"sequential-thinking",
"smart-thinking"
],
"author": "Smart-Thinking Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@smithery/sdk": "^1.6.6",
"@types/uuid": "^10.0.0",
"mkdirp": "^3.0.1",
"uuid": "^11.1.0",
"zod": "^3.22.4",
"express": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@types/express": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}