{ "name": "@forgespace/ui-mcp", "mcpName": "io.github.Forge-Space/ui-mcp", "version": "0.25.0", "description": "AI-driven UI generation via Model Context Protocol. Generate React, Next.js, Vue, Angular applications from natural language.", "type": "module", "main": "dist/index.js", "bin": { "forgespace-ui-mcp": "dist/index.js" }, "scripts": { "build": "tsup", "build:bundle": "tsup", "dev": "tsc --watch", "start": "node dist/index.js", "mcp": "node dist/index.js", "clean": "rm -rf dist coverage .tsbuildinfo node_modules/.cache", "validate": "npm run lint:check && npm run format:check && npm run test", "validate:all": "npm run lint; npm run format:check; npx tsc --noEmit; npm test; npm run build", "docker:build": "docker build -t forgespace-ui-mcp:latest .", "docker:run": "docker run -i forgespace-ui-mcp:latest", "lint": "eslint . --fix", "lint:fix": "eslint src/ --fix", "format": "prettier --write .", "format:check": "prettier --check .", "pretest": "npm run build", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --onlyChanged", "pretest:coverage": "npm run build", "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage", "knip": "knip", "deps:check": "ncu", "deps:update": "ncu -u", "deps:update-interactive": "ncu -i", "registry:check": "node scripts/registry-check.mjs", "release": "node scripts/release.mjs", "check:cycles": "madge --circular --extensions ts src/", "prepare": "husky || true", "prepublishOnly": "npm run build", "lint:check": "eslint .", "pre-commit": "npm run lint && npm run format && npm run test", "prepack": "npm run build", "publish": "npm publish --access public" }, "dependencies": { "@forgespace/siza-gen": "^0.15.0", "@modelcontextprotocol/sdk": "^1.27.1", "@resvg/resvg-js": "^2.6.2", "@sentry/node": "^10.43.0", "forge-ai-init": "^0.40.0", "pino": "^10.3.1", "playwright": "^1.58.2", "satori": "^0.26.0", "sharp": "^0.34.5", "zod": "^4.3.6" }, "devDependencies": { "@commitlint/cli": "^20.5.0", "@commitlint/config-conventional": "^20.5.0", "@eslint/js": "^10.0.1", "@forgespace/core": "^1.12.0", "@jest/globals": "^30.3.0", "@types/jest": "^30.0.0", "@types/node": "^25.3.5", "@types/react": "^19.2.14", "@types/sharp": "^0.32.0", "eslint": "^10.0.3", "globals": "^17.4.0", "husky": "^9.1.7", "jest": "^30.3.0", "knip": "^6.1.0", "lint-staged": "^16.4.0", "madge": "^8.0.0", "npm-check-updates": "^21.0.2", "prettier": "^3.8.1", "ts-jest": "^29.4.6", "tsup": "^8.5.1", "typescript": "^6.0.2", "typescript-eslint": "^8.57.0" }, "engines": { "node": ">=22" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "files": [ "dist", "bin", "server.json", "README.md", "LICENSE" ], "keywords": [ "mcp", "model-context-protocol", "mcp-server", "ai", "ui-generation", "react", "nextjs", "agent-tools", "internal-developer-platform", "forgespace", "typescript" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Forge-Space/ui-mcp.git" }, "bugs": { "url": "https://github.com/Forge-Space/ui-mcp/issues" }, "homepage": "https://github.com/Forge-Space/ui-mcp#readme", "lint-staged": { "src/**/*.ts": [ "eslint --fix", "prettier --write" ] }, "overrides": { "axios": ">=0.0.0 <0.30.4 || >0.30.4 <1.14.1 || >=1.14.2" } }