paths-filter/package.json
dependabot[bot] e1d8955f3b Bump picomatch and @types/picomatch
Bumps [picomatch](https://github.com/micromatch/picomatch) and [@types/picomatch](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/picomatch). These dependencies needed to be updated together.

Updates `picomatch` from 2.3.1 to 4.0.3
- [Release notes](https://github.com/micromatch/picomatch/releases)
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...4.0.3)

Updates `@types/picomatch` from 2.3.3 to 4.0.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/picomatch)

---
updated-dependencies:
- dependency-name: picomatch
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/picomatch"
  dependency-version: 4.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-16 10:44:32 -05:00

56 lines
1.4 KiB
JSON

{
"name": "paths-filter",
"version": "1.0.0",
"engines": {
"node": ">= 24"
},
"private": true,
"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": "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": "^2.0.3",
"@actions/exec": "^2.0.0",
"@actions/github": "^8.0.1",
"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.0",
"@typescript-eslint/parser": "^8.57.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.1.8",
"eslint-plugin-jest": "^28.11.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"
}
}