-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.68 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.68 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "securemcp-lite",
"version": "0.1.1",
"description": "A lightweight local proxy firewall for MCP servers with YAML policy enforcement.",
"type": "commonjs",
"license": "MIT",
"author": "Samuel Indra Bastian <mesakzitumpul@gmail.com> (https://github.com/devwebxyn)",
"contributors": [
"Samuel Indra Bastian <mesakzitumpul@gmail.com> (https://github.com/devwebxyn)"
],
"sideEffects": false,
"workspaces": [
"apps/frontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devwebxyn/securemcp-lite.git"
},
"homepage": "https://github.com/devwebxyn/securemcp-lite#readme",
"bugs": {
"url": "https://github.com/devwebxyn/securemcp-lite/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"keywords": [
"mcp",
"model-context-protocol",
"security",
"proxy",
"firewall",
"json-rpc",
"cli",
"typescript"
],
"engines": {
"node": ">=18.18.0"
},
"bin": {
"securemcp-lite": "dist/cli/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md",
"docs",
"examples"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"dev": "tsx watch src/cli/index.ts",
"demo:all": "npm run build && node scripts/demo-blocked-call.mjs && node scripts/demo-allowed-call.mjs && node scripts/demo-mcp-session.mjs",
"demo:allowed": "npm run build && node scripts/demo-allowed-call.mjs",
"demo:blocked": "npm run build && node scripts/demo-blocked-call.mjs",
"demo:session": "npm run build && node scripts/demo-mcp-session.mjs",
"lint": "eslint .",
"prepack": "npm run build",
"site:build": "npm --prefix apps/frontend run build",
"site:dev": "npm --prefix apps/frontend run dev",
"site:start": "npm --prefix apps/frontend run start",
"start": "node dist/cli/index.js",
"test": "vitest",
"validate": "npm run lint && npm run build && npm run test -- --run"
},
"dependencies": {
"commander": "^13.1.0",
"js-yaml": "^4.1.0",
"shell-quote": "^1.8.3",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"@types/shell-quote": "^1.7.5",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}