{ "name": "@promptfoo/code-scan-action", "version": "0.1.8", "license": "MIT", "description": "GitHub Action for scanning PRs with promptfoo code-scan", "private": true, "type": "module", "main": "dist/index.js", "scripts": { "build": "esbuild src/main.ts --bundle --platform=node --target=node20 --outfile=dist/index.js --sourcemap --format=esm --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\"", "package": "npm run build && git add dist/", "test": "echo \"Action tests run via parent jest config\" && exit 0", "dev": "npm run build && act pull_request -W .github/workflows/test-scan.yml -e .github/workflows/test-event.json --container-architecture linux/amd64", "tsc": "tsc --noEmit && tsc --noEmit --project tsconfig.tests.json", "tsc:watch": "tsc --noEmit --watch" }, "engines": { "node": ">=20.20.1" }, "dependencies": { "@actions/core": "^3.0.0", "@actions/exec": "^3.0.0", "@actions/github": "^9.1.0", "@octokit/auth-app": "^8.2.0", "@octokit/rest": "^22.0.1" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.12.0", "esbuild": "^0.28.0", "typescript": "^6.0.2" }, "overrides": { "undici": "^7.28.0" } }