When the dependency review summary exceeds GitHub's size limit (1024k), upload it as an artifact and provide a link in the comment. This ensures users can still access the full review details even when the summary is too large to display directly.
67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"name": "dependency-review-action",
|
|
"version": "4.7.3",
|
|
"private": true,
|
|
"description": "A GitHub Action for Dependency Review",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/github/dependency-review-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/artifact": "^2.3.2",
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.1",
|
|
"@octokit/plugin-retry": "^6.1.0",
|
|
"@octokit/request-error": "^5.1.1",
|
|
"@octokit/types": "12.5.0",
|
|
"@onebeyond/spdx-license-satisfies": "^1.0.1",
|
|
"ansi-styles": "^6.2.1",
|
|
"got": "^14.4.7",
|
|
"jest": "^29.7.0",
|
|
"octokit": "^3.1.2",
|
|
"spdx-expression-parse": "^3.0.1",
|
|
"spdx-satisfies": "^6.0.0",
|
|
"ts-jest": "^29.4.1",
|
|
"yaml": "^2.8.1",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20",
|
|
"@types/spdx-expression-parse": "^3.0.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"esbuild-register": "^3.6.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-jest": "^28.8.3",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"js-yaml": "^4.1.0",
|
|
"nodemon": "^3.1.10",
|
|
"prettier": "3.6.2",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"overrides": {
|
|
"cross-spawn": ">=7.0.5",
|
|
"@octokit/request-error@5.0.1": "5.1.1"
|
|
}
|
|
}
|