-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "@gravitykit/block-mcp",
"version": "1.8.0",
"description": "MCP server for WordPress block-level content management with preference-aware editing",
"main": "dist/index.cjs",
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs",
"start": "node dist/index.cjs",
"dev": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --watch",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.cjs",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"eval": "tsx tests/evals/lib/runner.ts",
"eval:fixture-refresh": "tsx tests/evals/scripts/fetch-fixture.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"wordpress",
"blocks",
"gutenberg",
"content-management",
"gravitykit"
],
"author": "GravityKit",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.9",
"shiki": "^4.0.2"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@types/node": "^22.0.0",
"esbuild": "^0.27.3",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md",
".env.example"
],
"publishConfig": {
"access": "public"
}
}