-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 886 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 886 Bytes
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
{
"name": "microcms-document-mcp-server",
"version": "0.2.5",
"description": "microCMSのドキュメントを参照するMCPサーバーです。",
"license": "MIT",
"author": "microcmsio",
"type": "module",
"main": "dist/index.js",
"bin": {
"microcms-document-mcp-server": "dist/index.js"
},
"files": [
"dist",
"docs"
],
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"microcms-js-sdk": "^3.2.0",
"@modelcontextprotocol/sdk": "^1.15.0"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"@types/node": "^24.0.12",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/microcmsio/microcms-document-mcp-server"
}
}