-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.27 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
76
77
78
{
"name": "@gravitykit/block-mcp",
"version": "2.0.2",
"description": "MCP server for WordPress block-level content management with preference-aware editing",
"main": "dist/index.cjs",
"bin": {
"block-mcp": "dist/index.cjs"
},
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:supports-color --external:has-flag",
"postbuild": "bash scripts/copy-server-bundle.sh",
"start": "node dist/index.cjs",
"dev": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --watch --external:supports-color --external:has-flag",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.cjs",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:docs": "playwright test --config tests/docs/playwright.config.ts",
"test:e2e": "playwright test --config tests/e2e/playwright.config.ts",
"eval": "tsx tests/evals/lib/runner.ts",
"eval:fixture-refresh": "tsx tests/evals/scripts/fetch-fixture.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"keywords": [
"mcp",
"wordpress",
"blocks",
"gutenberg",
"content-management",
"gravitykit"
],
"author": "GravityKit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GravityKit/block-mcp.git"
},
"homepage": "https://github.com/GravityKit/block-mcp#readme",
"bugs": {
"url": "https://github.com/GravityKit/block-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.16.0",
"form-data": "^4.0.1"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@playwright/test": "^1.49.0",
"@shikijs/engine-javascript": "^4.0.2",
"@shikijs/langs": "^4.0.2",
"@types/node": "^22.0.0",
"esbuild": "^0.28.1",
"sharp": "^0.33.5",
"shiki": "^4.0.2",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md",
".env.example"
],
"publishConfig": {
"access": "public"
},
"overrides": {
"esbuild": "$esbuild"
}
}