Files
Claude-code-review/package.json
dependabot[bot] 1fd8a96c46 Bump glob in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: [glob](https://github.com/isaacs/node-glob).


Updates `glob` from 11.0.3 to 11.1.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/node-glob/compare/v11.0.3...v11.1.0)

---
updated-dependencies:
- dependency-name: glob
  dependency-version: 11.1.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-18 07:06:25 +00:00

35 lines
704 B
JSON

{
"name": "claude-code-review-action",
"version": "1.0.0",
"description": "GitHub Action for code review using Claude",
"main": "action.js",
"scripts": {
"test": "jest",
"build": "ncc build action.js -o dist"
},
"keywords": [
"github",
"action",
"code-review",
"claude"
],
"author": "PacNPal",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"glob": "^11.1.0",
"node-fetch": "^3.3.2",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"jest": "^30.2.0",
"js-yaml": "^4.1.1"
},
"overrides": {
"js-yaml": "^4.1.1"
}
}