-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.83 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
{
"name": "McpServer",
"version": "1.0.0",
"description": "An MCP Server for interacting with the podcast one day.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon make.js run",
"build": "node make.js",
"deploy": "node make.js deploy",
"delete": "node make.js delete",
"lint": "eslint --ext .js src tests make.js",
"test": "mocha tests/**/*.test.js -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdventuresInDevops/mcp-example-server.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdventuresInDevops/mcp-example-server/issues"
},
"homepage": "https://github.com/AdventuresInDevops/mcp-example-server#readme",
"dependencies": {
"@authress/sdk": "^3.0.197",
"error-object-polyfill": "^1.2.47",
"jose": "^6.1.3",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.5",
"luxon": "^3.5.0",
"openapi-factory": "^5.4.88",
"short-uuid": "^6.0.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@authress/eslint-config": "^2.0.9",
"@aws-sdk/client-marketplace-metering": "^3.476.0",
"@aws-sdk/client-route-53": "^3.913.0",
"@aws-sdk/client-sts": "^3.946.0",
"@aws-sdk/credential-providers": "^3.913.0",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.28.4",
"aws-architect": "^6.7.133",
"aws-sdk": "^2.1692.0",
"chai": "^6.2.1",
"commander": "^14.0.2",
"eslint": "^9.38.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^11.3.2",
"glob": "^13.0.0",
"madge": "^8.0.0",
"mocha": "^11.7.5",
"nodemon": "^3.1.11",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.1"
},
"engines": {
"node": ">=22"
}
}