mirror of
https://github.com/dorny/paths-filter.git
synced 2026-03-10 16:34:28 +00:00
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "paths-filter",
|
|
"version": "5.0.0",
|
|
"private": true,
|
|
"description": "Execute your workflow steps only if relevant files are modified.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "pnpm run build:types && pnpm run build:bundle",
|
|
"build:bundle": "node ./esbuild.config.mjs",
|
|
"build:types": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint",
|
|
"test": "vitest",
|
|
"all": "pnpm run build && pnpm run lint && pnpm run format && pnpm test run"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/AurorNZ/paths-filter.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.1",
|
|
"js-yaml": "^4.1.1",
|
|
"micromatch": "^4.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.39.1",
|
|
"@octokit/webhooks-types": "^7.6.1",
|
|
"@tsconfig/node24": "^24.0.3",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/micromatch": "^4.0.10",
|
|
"@types/node": "^24.10.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
"@typescript-eslint/parser": "^8.48.0",
|
|
"chalk": "^5.6.2",
|
|
"esbuild": "^0.27.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-github": "^6.0.0",
|
|
"eslint-plugin-import-x": "^4.16.1",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.48.0",
|
|
"vitest": "^4.0.14"
|
|
},
|
|
"volta": {
|
|
"node": "24.11.1",
|
|
"pnpm": "10.23.0"
|
|
}
|
|
}
|