mirror of
https://github.com/ivuorinen/gh-codeql-report.git
synced 2026-01-26 03:34:05 +00:00
67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"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",
|
|
"release:patch": "npm version patch -m 'chore: release v%s' && git push origin main --follow-tags",
|
|
"release:minor": "npm version minor -m 'chore: release v%s' && git push origin main --follow-tags",
|
|
"release:major": "npm version major -m 'chore: release v%s' && git push origin main --follow-tags"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|