-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 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
74
75
76
77
78
{
"name": "@turbot/guardrails-mcp",
"version": "0.2.0",
"description": "MCP server for interacting with Turbot Guardrails.",
"license": "Apache-2.0",
"author": "Turbot HQ, Inc",
"homepage": "https://github.com/turbot/guardrails-mcp",
"bugs": "https://github.com/turbot/guardrails-mcp/issues",
"type": "module",
"bin": {
"mcp-server-guardrails": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"clean": "rm -rf dist dist-test",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "rm -rf dist-test && tsc -p tsconfig.test.json && node --test --test-reporter=spec 'dist-test/tests/**/*.test.js'"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"turbot",
"guardrails",
"mcp",
"mcp-server",
"model-context-protocol",
"security",
"compliance",
"cloud-security",
"cspm",
"cnapp",
"policy-as-code",
"infrastructure-as-code",
"cloud-governance",
"cloud-compliance",
"security-automation"
],
"overrides": {
"path-to-regexp": "^8.4.2",
"qs": "^6.14.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"@types/node": "^20.10.0",
"@types/nunjucks": "^3.2.6",
"@types/pino": "^7.0.4",
"ajv": "^8.20.0",
"buffer": "^6.0.3",
"colors": "^1.4.0",
"dotenv": "^16.4.7",
"graphql": "^16.10.0",
"graphql-request": "^6.1.0",
"js-yaml": "^4.1.1",
"lodash": "^4.18.1",
"nunjucks": "^3.2.4",
"pino": "^9.6.0",
"yaml": "^2.8.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.16",
"@types/node": "^20.10.0",
"shx": "^0.3.4",
"typescript": "^5.3.2"
},
"engines": {
"typescript": "^5.6.2"
}
}