-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.2 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.2 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
{
"name": "codeql-development-mcp-server",
"version": "2.25.1-next.1",
"description": "An MCP server supporting LLM requests for CodeQL development tools and resources.",
"main": "dist/codeql-development-mcp-server.js",
"type": "module",
"bin": {
"codeql-development-mcp-server": "dist/codeql-development-mcp-server.js",
"codeql-development-mcp-server-setup-packs": "scripts/setup-packs.sh"
},
"files": [
"dist/",
"ql/actions/tools/src/",
"ql/cpp/tools/src/",
"ql/csharp/tools/src/",
"ql/go/tools/src/",
"ql/java/tools/src/",
"ql/javascript/tools/src/",
"ql/python/tools/src/",
"ql/ruby/tools/src/",
"ql/rust/tools/src/",
"ql/swift/tools/src/",
"scripts/setup-packs.sh",
"package.json",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"codeql",
"development",
"llm",
"mcp",
"model-context-protocol",
"ql",
"sast",
"security",
"static-analysis",
"typescript"
],
"author": "@github/ps-codeql",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/advanced-security/codeql-development-mcp-server.git",
"directory": "server"
},
"homepage": "https://github.com/advanced-security/codeql-development-mcp-server#readme",
"bugs": {
"url": "https://github.com/advanced-security/codeql-development-mcp-server/issues"
},
"engines": {
"node": ">=24.13.0",
"npm": ">=11.6.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"adm-zip": "^0.5.16",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"js-yaml": "^4.1.1",
"sql.js": "^1.14.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/adm-zip": "^0.5.8",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"scripts": {
"build": "npm run clean && npm run lint && npm run bundle",
"build:all": "npm run build && npm run test:ql:fail-fast",
"bundle": "node esbuild.config.js",
"clean": "rm -rf dist .tmp",
"dev:stdio": "npm run build && TRANSPORT_MODE=stdio node dist/codeql-development-mcp-server.js",
"dev:http": "npm run build && TRANSPORT_MODE=http node dist/codeql-development-mcp-server.js",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"start": "npm run build && node dist/codeql-development-mcp-server.js",
"test": "npm run build && npm run test:ts:coverage",
"test:coverage": "npm run test:ts:coverage",
"test:ql": "./scripts/run-query-unit-tests.sh",
"test:ql:fail-fast": "./scripts/run-query-unit-tests.sh --fail-fast",
"test:ts": "vitest --run",
"test:ts:coverage": "vitest --run --coverage",
"test:watch": "vitest --watch"
}
}