-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 820 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 820 Bytes
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
{
"name": "tracebit-github-action",
"version": "1.1.1",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "bun build src/index.ts --target=node --format=cjs --outdir=dist && bun build src/pre.ts --target=node --format=cjs --outdir=dist && bun build src/run-async.ts --target=node --format=cjs --outdir=dist && bun build src/post.ts --target=node --format=cjs --outdir=dist",
"run:local": "bash scripts/run-local.sh",
"format": "biome check --write",
"format-fix": "biome check --fix --unsafe",
"test": "vitest run"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.1",
"@actions/http-client": "2.2.3"
},
"devDependencies": {
"@types/node": "20.19.27",
"typescript": "5.9.3",
"vitest": "4.0.16",
"@types/bun": "1.3.11"
}
}