-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.51 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
{
"name": "codeql-development-mcp-server_repo",
"version": "2.25.1-next.2",
"description": "An MCP server supporting LLM requests for CodeQL development tools and resources.",
"private": true,
"type": "module",
"keywords": [
"codeql",
"development",
"llm",
"mcp",
"model-context-protocol",
"ql",
"sast",
"security",
"static-analysis",
"typescript"
],
"author": "@github/ps-codeql",
"license": "LicenseRef-CodeQL-Terms",
"engines": {
"node": ">=24.13.0",
"npm": ">=11.6.2"
},
"devDependencies": {
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2"
},
"scripts": {
"build": "npm run build -w server && npm run build -w extensions/vscode",
"build-and-test": "npm run build:all && npm run test:all",
"build:all": "npm run tidy && npm run build -w server && npm run build -w client && npm run build -w extensions/vscode",
"clean": "npm run clean -w client -w server -w extensions/vscode && npm run clean:test-dbs",
"clean:test-dbs": "find server/ql .github/skills -type d -name '*.testproj' -exec rm -rf {} + 2>/dev/null; true",
"dev:stdio": "npm run dev:stdio -w server",
"dev:http": "npm run dev:http -w server",
"format": "prettier --write '**/*.{yml,yaml,md}'",
"format:check": "prettier --check '**/*.{yml,yaml,md}' && npm run lint:md",
"lint": "npm run lint -w client -w server -w extensions/vscode",
"lint:fix": "npm run lint:fix -w client -w server -w extensions/vscode",
"lint:md": "markdownlint '**/*.md'",
"start": "npm run start -w server",
"test": "npm run test:server && npm run test:client && npm run test:vscode",
"test:all": "npm run test:server && npm run test:client && npm run test:vscode",
"test:client": "npm run test:integration:default -w client",
"test:server": "npm run test -w server",
"test:vscode": "npm run test -w extensions/vscode",
"package:vsix": "npm run clean:test-dbs && npm run build -w server && npm run package -w extensions/vscode",
"tidy": "npm run lint:fix && npm run format && npm run lint:md",
"tidy:check": "npm run lint && npm run format:check",
"upgrade": "npm run upgrade:node",
"upgrade:node": "npx -y npm-check-updates --color --install always --peer --reject zod --root --upgrade --workspaces"
},
"workspaces": [
"client",
"server",
"extensions/vscode"
]
}