This repository was archived by the owner on Apr 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.39 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.39 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
73
74
75
{
"name": "mcp-wordpress-remote-proxy",
"version": "1.0.6",
"description": "MCP WordPress Remote proxy server",
"keywords": [
"mcp",
"wordpress",
"remote",
"proxy"
],
"author": "Ovidiu Iulian Galatan",
"repository": {
"type": "git",
"url": "git+https://github.com/galatanovidiu/wp-wordpress-remote-proxy.git"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/proxy.js",
"bin": {
"mcp-wordpress-remote-proxy": "dist/proxy.js"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"check": "prettier --check . && tsc",
"start": "node dist/proxy.js",
"dev": "NODE_ENV=development node dist/proxy.js",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"express": "^4.18.2",
"open": "^10.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"tsup": {
"entry": [
"src/proxy.ts"
],
"format": [
"esm"
],
"dts": true,
"clean": true,
"outDir": "dist"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}