package.json•983 B
{
"name": "confluence-mcp",
"version": "1.0.0",
"description": "Confluence MCP Server",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "vite build && chmod +x dist/index.js",
"start": "bun dist/index.js",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"prepare": "husky"
},
"keywords": [
"mcp",
"confluence",
"typescript",
"bun"
],
"author": "Dimosthenis Kaponis",
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.2.18",
"@types/node": "^24.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"vite": "^7.0.6",
"vitest": "^3.2.4",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"sanitize-html": "^2.17.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
}
}