-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"author": "Louis Brunner",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/rest": "^22.0.1"
},
"description": "GitHub Action which wraps calls to GitHub Checks API",
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/LouisBrunner"
},
"keywords": [
"github",
"actions",
"checks"
],
"license": "MIT",
"main": "lib/main.js",
"name": "checks-action",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/LouisBrunner/checks-action.git"
},
"scripts": {
"all": "bun run vet && bun run build && bun run pack && bun run test",
"build": "tsc",
"format:fix": "bunx @biomejs/biome format --write .",
"pack": "bun build src/main.ts --outfile dist/index.js --target node --production",
"test": "bun test",
"typecheck": "tsc --noEmit",
"vet": "bun run typecheck && bunx @biomejs/biome check"
},
"type": "module",
"version": "3.1.0"
}