-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.13 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@socketsecurity/mcp",
"version": "0.0.17",
"type": "module",
"main": "./index.js",
"bin": {
"socket-mcp": "./index.js"
},
"engines": {
"node": ">=22.0.0",
"npm": ">= 10"
},
"packageManager": "pnpm@11.1.3",
"scripts": {
"prepare": "node scripts/install-git-hooks.mts",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "node scripts/test.mts",
"test:tsc": "tsgo --noEmit -p tsconfig.json",
"test:node-test": "node --test --test-reporter spec --experimental-test-coverage --test-coverage-exclude='scripts/**' --test-coverage-exclude='**/node_modules/**' --test-coverage-exclude='**/*.test.ts' './*.test.ts'",
"lint": "node scripts/lint.mts",
"lint:all": "node scripts/lint.mts --all",
"format": "oxfmt -c .config/oxfmtrc.json --write .",
"format:check": "oxfmt -c .config/oxfmtrc.json --check .",
"check": "node scripts/check.mts",
"check:all": "node scripts/check.mts --all",
"fix": "node scripts/fix.mts",
"fix:all": "node scripts/fix.mts --all",
"update": "node scripts/update.mts",
"build": "npm run clean && run-s build:*",
"build:types": "tsgo -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": "pnpm exec mcpb validate ./",
"build-mcpb:ensure-deps": "npm install --production --ignore-scripts",
"build-mcpb:mcpb-pack": "pnpm exec mcpb pack ./",
"clean": "bash ./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_TOKEN=${SOCKET_API_TOKEN:-${SOCKET_API_KEY}} node --experimental-strip-types ./index.ts",
"server-http": "MCP_HTTP_MODE=true SOCKET_API_TOKEN=${SOCKET_API_TOKEN:-${SOCKET_API_KEY}} node --experimental-strip-types ./index.ts",
"check:paths": "node scripts/check-paths.mts",
"security": "node scripts/security.mts",
"setup-security-tools": "node .claude/hooks/setup-security-tools/install.mts",
"lockstep": "node scripts/lockstep.mts",
"lockstep:emit-schema": "node scripts/lockstep-emit-schema.mts"
},
"keywords": [],
"files": [
"package.json",
"index.js",
"index.d.ts",
"index.d.ts.map",
"lib/**/*.js",
"lib/**/*.d.ts",
"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.2.0",
"@modelcontextprotocol/sdk": "1.26.0",
"@socketsecurity/lib": "npm:@socketsecurity/lib@6.0.0",
"@socketsecurity/lib-stable": "npm:@socketsecurity/lib@6.0.0",
"packageurl-js": "^2.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"semver": "^7.7.4",
"zod": "3.25.76"
},
"overrides": {
"@hono/node-server": "1.19.13",
"fast-uri": "3.1.2",
"hono": "4.12.18",
"ip-address": "10.1.1",
"node-forge": "1.4.0",
"path-to-regexp": "8.4.2",
"tmp": "0.2.5",
"zod": "3.25.76",
"zod-to-json-schema": "3.25.1"
},
"pnpm": {
"overrides": {
"@hono/node-server": "1.19.13",
"fast-uri": "3.1.2",
"hono": "4.12.18",
"ip-address": "10.1.1",
"node-forge": "1.4.0",
"path-to-regexp": "8.4.2",
"tmp": "0.2.5",
"zod": "3.25.76",
"zod-to-json-schema": "3.25.1"
}
},
"devDependencies": {
"@sinclair/typebox": "catalog:",
"@types/node": "^24.12.3",
"@types/semver": "^7.7.1",
"@types/triple-beam": "^1.3.5",
"@typescript/native-preview": "7.0.0-dev.20260415.1",
"npm-run-all2": "^8.0.4",
"oxfmt": "0.37.0",
"oxlint": "1.52.0",
"taze": "catalog:",
"typescript": "~5.9.3"
},
"npm-run-all2": {
"nodeRun": true
}
}