-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 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
26
27
28
29
30
31
32
33
34
35
{
"name": "github-setter",
"displayName": "Github sync `.github` folder & label for custom settings",
"version": "1.5.3",
"main": "./build/github.js",
"bin": {
"gh-setter": "./build/main.js"
},
"dependencies": {
"clipanion": "^3.2.1",
"esno": "^4.0.0",
"github-label-sync": "^2.3.1",
"octokit": "^3.1.2"
},
"devDependencies": {
"@types/node": "^20.10.2",
"esbuild": "^0.25.0"
},
"scripts": {
"prepare": "pnpm build:cli && pnpm build:module",
"build:cli": "esbuild src/main.ts --bundle --outdir=build --platform=\"node\" --banner:js=\"#!/usr/bin/env node\n\"",
"build:module": "esbuild src/github.ts --bundle --outdir=build --platform=\"node\" "
},
"keywords": [
"github",
"cli",
"template",
".github",
"issue template",
"pull request template",
"semantic commit",
"funding"
],
"repository": "github:seonglae/github-setter"
}