-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "@ivotoby/contentful-management-mcp-server",
"version": "1.14.0",
"description": "MCP server for Contentful Content Management API integration",
"license": "MIT",
"type": "module",
"main": "./dist/bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ivo-toby/contentful-mcp.git"
},
"bin": {
"mcp-server-contentful": "./bin/mcp-server.js",
"contentful-mcp": "./bin/mcp-server.js"
},
"files": [
"dist"
],
"scripts": {
"build": "node build.js && chmod +x bin/mcp-server.js",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"watch": "tsc --watch",
"dev": "nodemon --watch src -e ts --exec 'npm run build'",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"inspect": "node -r dotenv/config ./scripts/inspect.js",
"inspect-watch": "node ./scripts/inspect-watch.js",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest watch --config vitest.config.ts"
},
"dependencies": {
"@contentful/node-apps-toolkit": "^3.13.0",
"@modelcontextprotocol/sdk": "^1.11.1",
"contentful-management": "^11.52.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.3",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/chai": "^4.3.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chai": "^5.0.0",
"esbuild": "^0.19.9",
"eslint": "^8.57.1",
"eslint-plugin-perfectionist": "^4.7.0",
"mocha": "^10.2.0",
"msw": "^2.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"semantic-release": "^25.0.2",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.22.0",
"vitest": "^3.1.3"
}
}