UNPKG

@ai-mapping/mcp-nextjs-dev

Version:

MCP server for managing Next.js development processes with AI tools

80 lines (79 loc) 2.13 kB
{ "name": "@ai-mapping/mcp-nextjs-dev", "version": "1.0.0", "description": "MCP server for managing Next.js development processes with AI tools", "type": "module", "main": "dist/server.js", "bin": { "mcp-nextjs-dev": "./dist/cli.js" }, "packageManager": "pnpm@10.11.0", "engines": { "node": ">=22.0.0", "pnpm": ">=10.0.0" }, "scripts": { "build": "tsc -p tsconfig.build.json", "dev": "tsc -p tsconfig.build.json --watch", "start": "node dist/cli.js", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "typecheck": "tsc --noEmit", "clean": "rm -rf dist", "precommit": "pnpm run typecheck && pnpm run lint && pnpm run format:check" }, "keywords": [ "mcp", "model-context-protocol", "nextjs", "next.js", "development-server", "dev-server", "claude", "claude-code", "ai-assistant", "dev-tools", "development-tools", "automation", "process-management", "log-monitoring", "typescript", "nodejs" ], "author": "AI Mapping Organization", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ai-mapping/mcp-nextjs-dev.git" }, "bugs": { "url": "https://github.com/ai-mapping/mcp-nextjs-dev/issues" }, "homepage": "https://github.com/ai-mapping/mcp-nextjs-dev#readme", "publishConfig": { "@ai-mapping:registry": "https://registry.npmjs.org" }, "dependencies": { "@modelcontextprotocol/sdk": "latest", "zod": "^3.22.0", "commander": "^11.0.0", "chalk": "^5.0.0", "dotenv": "^16.0.0" }, "devDependencies": { "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "prettier": "^3.0.0", "typescript": "^5.0.0", "tsx": "^4.0.0", "vitest": "^1.0.0" } }