paths-filter/package.json
dependabot[bot] 540ff54272 Bump @typescript-eslint/parser from 8.57.2 to 8.58.0
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.57.2 to 8.58.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-13 09:51:20 -05:00

57 lines
1.5 KiB
JSON

{
"name": "paths-filter",
"version": "1.0.0",
"engines": {
"node": ">= 24"
},
"private": true,
"type": "module",
"description": "Execute your workflow steps only if relevant files are modified.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"picomatch": "^4.0.3"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.3.1",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.5",
"@types/picomatch": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.58.0",
"@vercel/ncc": "^0.38.4",
"eslint": "10.2.0",
"eslint-plugin-jest": "^29.15.1",
"globals": "^16.0.0",
"jest": "^30.2.0",
"jest-circus": "^30.2.0",
"js-yaml": "^4.1.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.3.3"
}
}