2020-05-20 17:03:08 +02:00
|
|
|
{
|
2020-06-15 21:49:10 +02:00
|
|
|
"name": "paths-filter",
|
2020-05-21 13:46:48 +02:00
|
|
|
"version": "1.0.0",
|
2020-05-20 17:03:08 +02:00
|
|
|
"private": true,
|
2020-06-15 21:49:10 +02:00
|
|
|
"description": "Execute your workflow steps only if relevant files are modified.",
|
2020-05-20 17:03:08 +02:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2022-03-01 11:29:18 +13:00
|
|
|
"tscheck": "tsc --noEmit",
|
2020-05-20 17:03:08 +02:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2024-01-30 15:15:04 +13:00
|
|
|
"pack": "ncc build -m",
|
2024-09-11 12:33:39 +12:00
|
|
|
"test": "vitest",
|
2024-09-11 12:06:33 +12:00
|
|
|
"all": "pnpm run build && pnpm run format && pnpm run lint && pnpm run pack && pnpm test"
|
2020-05-20 17:03:08 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "YourNameOrOrganization",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2023-04-10 08:50:02 -06:00
|
|
|
"@actions/core": "^1.10.0",
|
|
|
|
"@actions/exec": "^1.1.1",
|
2024-01-30 15:12:05 +13:00
|
|
|
"@actions/github": "^6.0.0",
|
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"micromatch": "^4.0.5"
|
2020-05-20 17:03:08 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-30 15:12:05 +13:00
|
|
|
"@octokit/webhooks-types": "^7.3.1",
|
2024-01-30 15:15:04 +13:00
|
|
|
"@tsconfig/node20": "^20.1.2",
|
2024-01-30 15:12:05 +13:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2022-03-01 11:29:18 +13:00
|
|
|
"@types/micromatch": "^4.0.2",
|
2024-01-30 14:52:42 +13:00
|
|
|
"@types/node": "^20.0.0",
|
2024-01-30 15:12:05 +13:00
|
|
|
"@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",
|
2024-09-11 12:33:39 +12:00
|
|
|
"typescript": "^5.3.3",
|
|
|
|
"vitest": "^2.0.5"
|
2024-09-11 12:06:33 +12:00
|
|
|
},
|
|
|
|
"volta": {
|
|
|
|
"node": "20.17.0",
|
|
|
|
"pnpm": "8.15.8"
|
2020-05-21 13:46:48 +02:00
|
|
|
}
|
2020-05-20 17:03:08 +02:00
|
|
|
}
|