package.json•1.76 kB
{
"name": "@mako10k/mcp-confirm",
"version": "1.2.2",
"description": "MCP server for AI-user confirmation and clarification protocol",
"main": "dist/index.js",
"bin": {
"mcp-confirm": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"debug": "tsc && node --inspect=9229 dist/index.js",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"jscpd": "jscpd ./src",
"quality": "npm run lint && npm run format:check && npm run jscpd",
"prepublishOnly": "npm run build && npm run quality",
"codespaces:setup": ".devcontainer/post-create.sh"
},
"keywords": [
"mcp",
"model-context-protocol",
"elicitation",
"confirmation",
"clarification",
"ai-assistant",
"copilot",
"claude",
"vs-code"
],
"author": "mako10k",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mako10k/mcp-confirm.git"
},
"homepage": "https://github.com/mako10k/mcp-confirm#readme",
"bugs": {
"url": "https://github.com/mako10k/mcp-confirm/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"jscpd": "^4.0.5",
"prettier": "^3.6.2",
"typescript": "^5.0.0"
}
}