-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.47 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.47 KB
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
{
"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 <me@llu.is>",
"license": "MIT",
"keywords": [
"actions",
"node",
"changesets"
],
"scripts": {
"build": "yarn esbuild --bundle --outfile=dist/index.js --platform=node --packages=bundle --minify --keep-names --target=node20.0 src/index.ts",
"format": "biome format --write src/",
"format-check": "biome format --write src/",
"lint": "biome lint src/",
"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": "^3.0.0",
"@biomejs/biome": "^2.4.10",
"@changesets/cli": "^2.30.0",
"@changesets/get-release-plan": "^4.0.15",
"@changesets/git": "^3.0.4",
"@manypkg/get-packages": "^3.1.0",
"@types/node": "^24.2.0",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.28.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
}
}