-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.44 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": "@socketsecurity/mcp",
"version": "0.0.17",
"type": "module",
"main": "./index.js",
"bin": {
"socket-mcp": "./index.js"
},
"engines": {
"node": ">=22.0.0",
"npm": ">= 10"
},
"scripts": {
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:tsc": "tsc",
"test:node-test": "c8 node --experimental-strip-types --test --test-reporter spec",
"build": "npm run clean && run-s build:*",
"build:types": "tsc -p tsconfig.declaration.json",
"build:permissions": "chmod +x ./index.js && (chmod +x ./mock-client/*.js 2>/dev/null || true)",
"build-mcpb": "run-s build build-mcpb:*",
"build-mcpb:versions_match": "node --experimental-strip-types scripts/check-versions.ts",
"build-mcpb:validate": "npx mcpb validate ./",
"build-mcpb:ensure-deps": "npm install --production --ignore-scripts",
"build-mcpb:mcpb-pack": "npx mcpb pack ./",
"clean": "./scripts/clean.sh",
"debug-stdio": "node --experimental-strip-types ./mock-client/debug-client.ts",
"debug-sdk": "node --experimental-strip-types ./mock-client/stdio-client.ts",
"debug-http": "node --experimental-strip-types ./mock-client/http-client.ts",
"server-stdio": "SOCKET_API_KEY=${SOCKET_API_KEY} node --experimental-strip-types ./index.ts",
"server-http": "MCP_HTTP_MODE=true SOCKET_API_KEY=${SOCKET_API_KEY} node --experimental-strip-types ./index.ts"
},
"keywords": [],
"files": [
"package.json",
"package-lock.json",
"index.js",
"index.d.ts",
"index.d.ts.map",
"mock-client/**/*.js",
"mock-client/**/*.d.ts*"
],
"author": "Alexandros Kapravelos",
"description": "Socket MCP server for scanning dependencies",
"repository": {
"type": "git",
"url": "https://github.com/SocketDev/socket-mcp"
},
"dependencies": {
"@anthropic-ai/mcpb": "^1.1.0",
"@modelcontextprotocol/sdk": "1.26.0",
"pino": "^10.0.0",
"pino-pretty": "^13.0.0",
"semver": "^7.7.2",
"zod": "3.25.76"
},
"overrides": {
"zod": "3.25.76",
"zod-to-json-schema": "3.25.1"
},
"pnpm": {
"overrides": {
"zod": "3.25.76",
"zod-to-json-schema": "3.25.1"
}
},
"devDependencies": {
"@types/node": "^24.0.7",
"@types/semver": "^7.7.0",
"@types/triple-beam": "^1.3.5",
"c8": "^10.0.0",
"neostandard": "^0.12.0",
"npm-run-all2": "^8.0.1",
"typescript": "~5.9.2"
}
}