-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@verygoodplugins/mcp-local-wp",
"version": "1.1.0",
"description": "MCP server for WordPress database access via Local by Flywheel",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.verygoodplugins/mcp-local-wp",
"bin": {
"mcp-local-wp": "dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "node -e \"console.log('mcp-local-wp build ok')\"",
"prepublishOnly": "npm run build && npm run postbuild",
"lint": "eslint \"src/**/*.{ts,js}\"",
"lint:fix": "eslint \"src/**/*.{ts,js}\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"wordpress",
"local-by-flywheel",
"mysql",
"database"
],
"author": "Very Good Plugins",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-local-wp.git"
},
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-local-wp/issues"
},
"homepage": "https://github.com/verygoodplugins/mcp-local-wp#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^17.2.3",
"mysql2": "^3.6.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.0.0",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
}
}