-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.14 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.14 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
{
"name": "@socketsecurity/mcp",
"version": "0.0.18",
"description": "Socket MCP server for scanning dependencies",
"keywords": [],
"author": "Alexandros Kapravelos",
"repository": {
"type": "git",
"url": "https://github.com/SocketDev/socket-mcp"
},
"bin": {
"socket-mcp": "./dist/index.cjs"
},
"files": [
"CHANGELOG.md",
"dist/index.cjs",
"dist/index.d.ts",
"hooks/socket-gate",
"package.json"
],
"type": "module",
"main": "./dist/index.cjs",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prepare": "node scripts/fleet/install-git-hooks.mts && node scripts/fleet/install-git-hooks.mts",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"publish": "node scripts/fleet/publish.mts",
"test": "node scripts/fleet/test.mts",
"test:e2e": "vitest run --config .config/repo/vitest.config.mts test/server.e2e.ts",
"cover": "node scripts/fleet/cover.mts",
"test:tsc": "tsgo --noEmit -p tsconfig.json",
"lint": "node scripts/fleet/lint.mts",
"lint:all": "node scripts/fleet/lint.mts --all",
"format": "oxfmt -c .config/fleet/oxfmtrc.json --write .",
"format:check": "oxfmt -c .config/fleet/oxfmtrc.json --check .",
"check": "node scripts/fleet/check.mts",
"check:all": "node scripts/fleet/check.mts --all",
"fix": "node scripts/fleet/fix.mts",
"fix:all": "node scripts/fleet/fix.mts --all",
"update": "node scripts/fleet/update.mts",
"build": "npm run clean && run-s build:*",
"build:bundle": "node scripts/build.mts",
"build:types": "tsgo -p tsconfig.dts.json",
"build:permissions": "chmod +x ./dist/index.cjs",
"build-mcpb": "run-s build build-mcpb:*",
"build-mcpb:versions_match": "node scripts/check-versions.ts",
"build-mcpb:validate": "mcpb validate ./",
"build-mcpb:ensure-deps": "npm install --production --ignore-scripts",
"build-mcpb:mcpb-pack": "mcpb pack ./",
"clean": "bash ./scripts/clean.sh",
"debug-stdio": "node ./mock-client/debug-client.ts",
"debug-sdk": "node ./mock-client/stdio-client.ts",
"debug-http": "node ./mock-client/http-client.ts",
"server-stdio": "SOCKET_API_TOKEN=${SOCKET_API_TOKEN:-${SOCKET_API_KEY}} node ./index.ts",
"server-stdio:debug": "SOCKET_DEBUG=1 SOCKET_API_TOKEN=${SOCKET_API_TOKEN:-${SOCKET_API_KEY}} node ./index.ts",
"server-http": "MCP_HTTP_MODE=true SOCKET_API_TOKEN=${SOCKET_API_TOKEN:-${SOCKET_API_KEY}} node ./index.ts",
"server-http:debug": "SOCKET_DEBUG=1 MCP_HTTP_MODE=true SOCKET_API_TOKEN=${SOCKET_API_TOKEN:-${SOCKET_API_KEY}} node ./index.ts",
"check:paths": "node scripts/fleet/check/paths-are-canonical.mts",
"security": "node scripts/fleet/security.mts",
"setup-security-tools": "node .claude/hooks/fleet/setup-security-tools/install.mts",
"lockstep": "node scripts/fleet/lockstep.mts",
"lockstep:emit-schema": "node scripts/fleet/lockstep-emit-schema.mts",
"ci:local": "agent-ci run --all --quiet --pause-on-failure --github-token"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^1.2.0",
"@modelcontextprotocol/sdk": "1.26.0",
"@redwoodjs/agent-ci": "catalog:",
"@sinclair/typebox": "catalog:",
"@socketregistry/packageurl-js": "catalog:",
"@socketregistry/packageurl-js-stable": "catalog:",
"@socketsecurity/lib": "npm:@socketsecurity/lib@6.0.7",
"@socketsecurity/lib-stable": "npm:@socketsecurity/lib@6.0.7",
"@socketsecurity/sdk": "catalog:",
"@socketsecurity/sdk-stable": "catalog:",
"@types/node": "^24.12.4",
"@types/shell-quote": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20260510.1",
"@vitest/coverage-v8": "catalog:",
"nock": "14.0.15",
"npm-run-all2": "^8.0.4",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"rolldown": "catalog:",
"shell-quote": "catalog:",
"taze": "catalog:",
"untracked": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=11.16.0"
},
"packageManager": "pnpm@11.5.1",
"allowScripts": {
"cpu-features": false,
"esbuild": true,
"protobufjs": false,
"ssh2": false
},
"npm-run-all2": {
"nodeRun": true
}
}