62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "web-dev-mcp",
|
|
"version": "0.6.0",
|
|
"description": "MCP server providing a full web development toolkit (workflow, scaffolding, Laravel, CodeIgniter, React, Vue, Nuxt, Docker, browser inspection) for AI coding agents.",
|
|
"type": "module",
|
|
"main": "dist/server.js",
|
|
"bin": {
|
|
"web-dev-mcp": "dist/transports/stdio.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE",
|
|
"CHANGELOG.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"dev": "tsx src/transports/stdio.ts",
|
|
"start": "node dist/transports/stdio.js",
|
|
"start:http": "node dist/transports/http.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"prepublishOnly": "npm run build && npm run test"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"web-development",
|
|
"laravel",
|
|
"codeigniter",
|
|
"react",
|
|
"vue",
|
|
"nuxt",
|
|
"docker"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.17.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
"dockerode": "^4.0.5",
|
|
"execa": "^10.0.1",
|
|
"express": "^5.2.1",
|
|
"pixelmatch": "^7.2.0",
|
|
"playwright": "^1.62.1",
|
|
"pngjs": "^7.0.0",
|
|
"zod": "^3.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dockerode": "^4.0.1",
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.10.5",
|
|
"@types/pixelmatch": "^5.2.6",
|
|
"@types/pngjs": "^6.0.5",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|