Initial commit

This commit is contained in:
2025-09-30 22:34:56 +03:00
commit fafd5e89d4
28 changed files with 6481 additions and 0 deletions

63
package.json Normal file
View File

@@ -0,0 +1,63 @@
{
"name": "@ivuorinen/gh-codeql-report",
"version": "1.0.0",
"description": "Collect repository CodeQL findings as a LLM ready report for easier fixing.",
"keywords": [
"cli",
"github",
"codeql",
"security-scanning",
"llm",
"report"
],
"homepage": "https://github.com/ivuorinen/gh-codeql-report#readme",
"bugs": {
"url": "https://github.com/ivuorinen/gh-codeql-report/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivuorinen/gh-codeql-report.git"
},
"license": "MIT",
"author": "Ismo Vuorinen <https://github.com/ivuorinen>",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"gh-codeql-report": "./dist/cli.js"
},
"preferGlobal": true,
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"lint": "biome check src/",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky"
},
"dependencies": {
"@types/yargs": "^17.0.33",
"node-sarif-builder": "^3.2.0",
"octokit": "^5.0.3",
"simple-git": "^3.28.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/node": "^24.6.0",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched",
"biome lint --write --no-errors-on-unmatched"
],
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}