UNPKG

@davenportsociety/clear-thought-patterns

Version:

A Model Context Protocol (MCP) server providing systematic thinking tools, mental models, and debugging approaches for enhanced problem-solving capabilities

93 lines (92 loc) 2.74 kB
{ "name": "@davenportsociety/clear-thought-patterns", "version": "0.4.15", "description": "A Model Context Protocol (MCP) server providing systematic thinking tools, mental models, and debugging approaches for enhanced problem-solving capabilities", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "clear-thought-patterns": "dist/index.js" }, "files": [ "dist/**/*", "README.md", "CHANGELOG.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "start": "node dist/index.js", "dev": "tsup --watch --sourcemap --onSuccess \"node dist/index.js\"", "test": "vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage", "test:legacy": "./scripts/test-tools.sh", "test:simple": "./scripts/simple-test.sh", "test:key": "./scripts/test-key-tools.sh", "test:npx": "./scripts/test-npx.sh", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix", "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"", "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"", "type-check": "tsc --noEmit", "check": "pnpm run type-check && pnpm run lint && pnpm run format:check", "prepublishOnly": "pnpm run check && pnpm run build", "prepack": "pnpm run build", "promote-tasks": "./scripts/promote-ready-tasks.sh" }, "keywords": [ "mcp", "model-context-protocol", "thinking", "mental-models", "debugging", "problem-solving", "ai", "assistant", "reasoning", "decision-making", "cognitive-tools", "systematic-thinking", "analysis", "framework" ], "author": "John Mendez", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/JM-Mendez/clear-thought-patterns.git" }, "homepage": "https://github.com/JM-Mendez/clear-thought-patterns#readme", "bugs": { "url": "https://github.com/JM-Mendez/clear-thought-patterns/issues" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.5.0", "chalk": "^5.3.0", "yargs": "^17.7.2", "zod": "^3.23.8" }, "devDependencies": { "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "@vitest/coverage-v8": "^3.2.3", "@vitest/ui": "^3.2.3", "eslint": "^9.28.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1", "prettier": "^3.5.3", "tsup": "^8.5.0", "typescript": "^5.3.3", "vitest": "^3.2.3" } }