-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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": "ghats",
"description": "GitHub Actions with TypeScript",
"version": "0.10.3",
"author": "koki-develop <kou.pg.0131@gmail.com>",
"homepage": "https://github.com/koki-develop/ghats",
"repository": {
"type": "git",
"url": "git+https://github.com/koki-develop/ghats.git"
},
"license": "MIT",
"bin": {
"ghats": "dist/cli/index.js"
},
"files": [
"dist"
],
"main": "dist/lib/index.js",
"module": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "biome check --error-on-warnings .",
"fmt": "biome check --write --unsafe .",
"gha:install": "ghats install",
"gha:build": "ghats build",
"build:package": "bun run tasks/build.ts",
"prepublishOnly": "bun run build:package"
},
"dependencies": {
"@swc-node/register": "1.10.10",
"commander": "13.1.0",
"ink": "5.2.1",
"octokit": "4.1.4",
"react": "18.3.1",
"yaml": "2.8.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@types/bun": "1.3.3",
"@types/react": "18.3.27",
"ghats": "0.10.3",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"oxc-transform": "0.68.1",
"typescript": "5.9.3"
}
}