paths-filter/package.json
Jim Kane 9afa3450dd Update eslint from 8.57.1 to 10.0.3 with flat config migration
ESLint 10 drops the legacy eslintrc format, so migrate to flat config.
- Replace .eslintrc.json and .eslintignore with eslint.config.js
- Remove eslint-plugin-github (incompatible with eslint 10; its internal
  config only provided 3 DOM rules unused by this project)
- Update @typescript-eslint/* to 8.57.2 and eslint-plugin-jest to 29.x
- Add globals package for environment globals in flat config
2026-03-25 14:06:45 -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.57.2",
"@vercel/ncc": "^0.38.4",
"eslint": "10.0.3",
"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"
}
}