package.json•766 B
{
"name": "@mcp-servers/web-llm-playwright",
"version": "1.0.0",
"description": "MCP server for Web-LLM using Playwright browser automation",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && cp src/index.html dist/index.html",
"start": "tsx index.ts",
"start:prod": "node dist/index.js",
"test": "tsx test.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"clean": "rm -rf dist"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.79",
"@modelcontextprotocol/sdk": "^1.0.0",
"playwright": "^1.48.0",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^24.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}