-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 953 Bytes
/
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
{
"name": "forker",
"module": "index.ts",
"type": "module",
"scripts": {
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"test": "bun test",
"fix": "bun run check:fix && bun run test && bun run typecheck",
"build:action": "bun build src/bin/action.ts --outdir=out --target=node"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@biomejs/biome": "^1.8.3",
"@marsfoundation/common-testnets": "^0.2.0-20250214.21c9541",
"@marsfoundation/common-universal": "^0.2.0-20250206.0b13de8",
"@superactions/comment": "^0.1.1",
"dax-sh": "^0.41.0",
"dedent": "^1.5.3",
"fetch-retry": "^6.0.0",
"glob": "^11.0.0",
"markdown-table": "^3.0.3",
"viem": "^2.16.5",
"zod": "^3.24.2"
}
}