{ "name": "paths-filter", "version": "1.0.0", "private": true, "description": "Execute your workflow steps only if relevant files are modified.", "main": "lib/main.js", "scripts": { "build": "tsc", "tscheck": "tsc --noEmit", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "lint": "eslint src/**/*.ts", "pack": "ncc build -m", "test": "vitest", "all": "pnpm run build && pnpm run format && pnpm run lint && pnpm run pack && pnpm test" }, "repository": { "type": "git", "url": "git+https://github.com/actions/typescript-action.git" }, "keywords": [ "actions", "node", "setup" ], "author": "YourNameOrOrganization", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.0", "js-yaml": "^4.1.0", "micromatch": "^4.0.5" }, "devDependencies": { "@octokit/webhooks-types": "^7.3.1", "@tsconfig/node20": "^20.1.2", "@types/js-yaml": "^4.0.9", "@types/micromatch": "^4.0.2", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.20.0", "@typescript-eslint/parser": "^6.20.0", "@vercel/ncc": "^0.38.1", "eslint": "^8.56.0", "eslint-plugin-github": "^4.10.1", "prettier": "^3.2.4", "typescript": "^5.3.3", "vitest": "^2.0.5" }, "volta": { "node": "20.17.0", "pnpm": "8.15.8" } }