-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 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
45
46
47
48
49
{
"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": "nicolas@hedger.ch"
},
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/tool-cache": "4.0.0",
"@octokit/auth-action": "6.0.2",
"@octokit/request-error": "7.1.0",
"@octokit/rest": "22.0.1",
"@std/jsonc": "npm:@jsr/std__jsonc@1.0.2",
"find-up-simple": "1.0.1",
"semver": "7.7.4",
"ts-dedent": "2.2.0",
"yaml": "2.8.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@octokit/types": "16.0.0",
"@pnpm/lockfile-types": "7.1.3",
"@types/bun": "1.3.11",
"@types/semver": "7.7.1",
"lefthook": "2.1.4",
"typescript": "5.9.3"
},
"packageManager": "bun@1.2.10",
"trustedDependencies": [
"lefthook"
]
}