-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@caff/changed-packages-github-action",
"version": "0.0.9",
"description": "A Github action to get the packages affected by your changesets",
"main": "lib/index.js",
"repository": "https://github.com/caffco/changed-packages-github-action",
"bugs": {
"url": "https://github.com/caffco/changed-packages-github-action/issues"
},
"homepage": "https://github.com/caffco/changed-packages-github-action#readme",
"author": "Lluís Ulzurrun de Asanza i Sàez <[email protected]>",
"license": "MIT",
"keywords": [
"actions",
"node",
"changesets"
],
"scripts": {
"prepare": "husky install",
"build": "yarn esbuild --bundle --outfile=dist/index.js --platform=node --packages=bundle --minify --keep-names --target=node20.0 src/index.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "vitest --coverage",
"all": "run-s format lint test build"
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@action-validator/core": "^0.6.0",
"@actions/core": "^1.11.1",
"@changesets/cli": "^2.27.11",
"@changesets/get-release-plan": "^4.0.5",
"@changesets/git": "^3.0.2",
"@manypkg/get-packages": "^1.1.3",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^2.0.5",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^28.10.0",
"husky": "^8.0.3",
"lint-staged": "^15.3.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"typescript": "^5.7.3",
"vitest": "^2.0.5"
}
}