-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 KB
/
package.json
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
{
"name": "@bschauer/strapi-mcp-server",
"version": "2.3.0",
"description": "Model Context Protocol server implementation for Strapi CMS with enhanced documentation and configuration",
"type": "module",
"bin": {
"@bschauer/strapi-mcp-server": "./build/index.js"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"build:watch": "tsc --watch",
"start": "node build/index.js",
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"strapi",
"mcp",
"model-context-protocol",
"cms"
],
"author": "bschauer",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.17.10",
"nodemon": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3",
"@types/form-data": "^2.2.1",
"@types/node-fetch": "^2.6.12",
"@types/qs": "^6.9.18",
"@types/sharp": "^0.31.1",
"form-data": "^4.0.1",
"node-fetch": "^2.7.0",
"qs": "^6.14.0",
"sharp": "^0.33.5"
}
}