-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "@noveum-ai/mcp-server",
"version": "1.0.4",
"description": "An MCP server that exposes OpenAPI endpoints as resources",
"license": "MIT",
"type": "module",
"main": "./dist/bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Noveum/api-market-mcp-server.git"
},
"bin": {
"mcp-server-contentful": "./bin/mcp-server.js"
},
"files": [
"dist",
"modified_files.txt",
"src/lib"
],
"scripts": {
"build": "node build.js && chmod +x bin/mcp-server.js",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"dev": "nodemon --watch src -e ts --exec 'npm run build'",
"inspect": "node -r dotenv/config ./scripts/inspect.js",
"inspect-watch": "node ./scripts/inspect-watch.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.7.4",
"openapi-types": "^12.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dotenv": "^16.4.7",
"esbuild": "^0.19.9",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}