package.json•1.37 kB
{
"name": "mcp-color-convert",
"version": "0.1.2",
"description": "Comprehensive color conversion, manipulation, analysis, and accessibility MCP server",
"keywords": [
"color",
"converter",
"mcp",
"model-context-protocol",
"colorizr",
"hex",
"rgb",
"hsl",
"oklch",
"oklab",
"color-space"
],
"bin": {
"mcp-color-convert": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"type": "module",
"module": "src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bennyzen/mcp-color-convert.git"
},
"bugs": {
"url": "https://github.com/bennyzen/mcp-color-convert/issues"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc && npx smithery build",
"build:tsc": "tsc",
"build:smithery": "npx smithery build",
"dev": "npx smithery dev",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"colorizr": "^3.0.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@smithery/cli": "^1.6.3",
"typescript": "^5.6.3"
}
}