-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "setup-biome",
"description": "Setup the Biome CLI in GitHub Actions",
"module": "src/index.ts",
"type": "module",
"scripts": {
"tag": "bun run scripts/tag-github-action.ts",
"build": "bun build . --outfile dist/index.mjs --target node --minify",
"check": "biome check --write",
"typecheck": "tsc --noEmit",
"ci": "biome ci"
},
"keywords": ["biome", "biomejs", "cli", "github-action"],
"author": {
"name": "Nicolas Hedger",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/tool-cache": "2.0.1",
"@octokit/auth-action": "5.1.1",
"@octokit/request-error": "6.1.5",
"@octokit/rest": "21.0.2",
"semver": "7.6.3",
"ts-dedent": "2.2.0",
"yaml": "2.6.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@octokit/types": "13.6.1",
"@types/bun": "1.1.13",
"@types/semver": "7.5.8",
"lefthook": "1.8.2",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"trustedDependencies": ["@biomejs/biome", "lefthook"]
}