{ "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" } }