Vite MCP Server

by ESnark
Verified
{ "name": "blowback-context", "version": "0.3.1", "description": "MCP server that integrates with FE development server for Cursor", "main": "dist/index.js", "type": "module", "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsc -w", "prepare": "pnpm build", "lint": "eslint \"src/**/*.{js,ts}\"", "lint:fix": "eslint \"src/**/*.{js,ts}\" --fix", "format": "eslint \"src/**/*.{js,ts}\" --fix && prettier --write \"src/**/*.{js,ts}\"", "test": "jest", "changeset": "changeset", "version": "changeset version", "release": "pnpm build && changeset publish", "inspect": "pnpm build && CLIENT_PORT=6100 npx @modelcontextprotocol/inspector node dist/index.js" }, "keywords": [ "mcp", "vite", "hmr", "cursor", "modelcontextprotocol" ], "author": "ESnark<settimeout1000@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/ESnark/blowback.git" }, "homepage": "https://github.com/ESnark/blowback#readme", "bugs": { "url": "https://github.com/ESnark/blowback/issues" }, "publishConfig": { "access": "public" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "puppeteer": "^22.0.0", "ws": "^8.16.0", "zod": "^3.22.4" }, "devDependencies": { "@changesets/cli": "^2.26.2", "@types/node": "^20.11.3", "@types/puppeteer": "^7.0.4", "@types/ws": "^8.5.10", "@typescript-eslint/eslint-plugin": "^6.18.1", "@typescript-eslint/parser": "^6.18.1", "eslint": "^8.56.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-unused-imports": "^4.1.4", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.1.1", "typescript": "^5.3.3" }, "engines": { "node": ">=20.0.0" }, "bin": { "blowback-context": "./dist/index.js" }, "files": [ "dist", "README.md", "README_KR.md", "LICENSE" ] }