@nicolasmirson/plan-mode-claude
Version:
Structured planning workflow for AI assistants with MCP integration
63 lines (62 loc) • 1.54 kB
JSON
{
"name": "@nicolasmirson/plan-mode-claude",
"version": "2.0.0",
"description": "Structured planning workflow for AI assistants with MCP integration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"plan-mode-claude": "./bin/plan-mode-claude"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"postinstall": "node scripts/postinstall.cjs",
"example:basic": "ts-node examples/basic-usage.ts",
"example:mcp": "ts-node examples/mcp-integration.ts",
"start:mcp": "ts-node src/mcpServer.ts"
},
"keywords": [
"ai",
"planning",
"mcp",
"cursor",
"claude",
"typescript",
"workflow",
"automation"
],
"author": "Nicolas Mirson <nicolas.mirson@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0"
},
"files": [
"dist/**/*",
"bin/**/*",
"scripts/**/*",
"templates/**/*",
".cursor/**/*",
"README.md"
]
}