UNPKG

v0-mcp-ts

Version:

A powerful Model Context Protocol (MCP) server that integrates v0.dev AI capabilities for modern web development. Powered by Bun for 25x faster performance.

102 lines (101 loc) 2.86 kB
{ "name": "v0-mcp-ts", "version": "1.0.0", "description": "A powerful Model Context Protocol (MCP) server that integrates v0.dev AI capabilities for modern web development. Powered by Bun for 25x faster performance.", "main": "dist/index.js", "module": "index.ts", "type": "module", "keywords": [ "mcp", "model-context-protocol", "v0.dev", "ai", "web-development", "typescript", "claude", "code-generation", "component-generation", "debugging", "bun", "performance" ], "author": { "name": "Nicolas Torres", "email": "nicotordev@gmail.com", "url": "https://github.com/nicotordev" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/nicotordev/v0-mcp-ts.git" }, "bugs": { "url": "https://github.com/nicotordev/v0-mcp-ts/issues" }, "homepage": "https://github.com/nicotordev/v0-mcp-ts#readme", "license": "MIT", "files": [ "dist/", "examples/", "scripts/", "README.md", "LICENSE", "CHANGELOG.md" ], "bin": { "v0-mcp-ts": "./dist/index.js" }, "engines": { "node": ">=18.0.0", "bun": ">=1.2.0" }, "scripts": { "dev": "bun run --watch src/index.ts", "build": "bun build src/index.ts --outdir dist --target node", "start": "bun run dist/index.js", "start:bun": "bun run dist/index.js", "clean": "rm -rf dist coverage", "test": "vitest", "test:run": "vitest run", "test:watch": "vitest --watch", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage", "lint": "echo 'Linting...' && exit 0", "lint:fix": "echo 'Linting and fixing...' && exit 0", "type-check": "tsc --noEmit", "setup": "bun scripts/setup.js", "security-check": "bun audit && bun scripts/security-check.js", "postinstall": "bun run build", "docker:build": "docker build -t v0-mcp-ts .", "docker:run": "docker run -e V0_API_KEY=$V0_API_KEY v0-mcp-ts", "docker:dev": "docker-compose --profile development up --build", "docker:test": "docker-compose --profile testing up --build", "release": "bun version patch && git push && git push --tags", "bun:upgrade": "bun upgrade", "bun:cache:clear": "bun pm cache rm", "bun:install:clean": "rm -rf node_modules bun.lock && bun install" }, "private": false, "dependencies": { "@ai-sdk/vercel": "^0.0.1", "@modelcontextprotocol/sdk": "^1.12.1", "@vitest/coverage-v8": "^3.1.4", "ai": "^4.3.16", "dotenv": "^16.5.0", "node-fetch": "^3.3.2", "ws": "^8.18.2", "zod": "^3.25.45" }, "devDependencies": { "@types/bun": "latest", "@types/node": "^22.15.29", "@types/ws": "^8.18.1", "@vitest/ui": "^3.1.4", "vitest": "^3.1.4" }, "peerDependencies": { "typescript": "^5.8.3" } }