package.json•2 kB
{
"name": "claudeus-wp-mcp",
"version": "2.0.5",
"description": "Model Context Protocol server for WordPress integration",
"license": "MIT",
"private": false,
"author": "Amadeus Samiel H.",
"homepage": "https://simhop.se",
"bugs": "https://github.com/deus-h/claudeus-wp-mcp/discussions",
"type": "module",
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"claudeus-wp-mcp": "dist/index.js"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "chmod +x dist/inspector-wrapper.js && chmod +x dist/index.js",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"clean": "rm -rf dist node_modules",
"inspector": "pnpx @modelcontextprotocol/inspector dist/inspector-wrapper.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"test:watch": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --watch",
"test:coverage": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage",
"smithery:publish": "smithery-cli publish",
"smithery:validate": "smithery-cli validate"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.1",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"form-data": "^4.0.1",
"tailwindcss": "^3.4.17",
"zod": "^3.24.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@modelcontextprotocol/inspector": "^0.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.70",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.4"
}
}