-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "github-labels-template",
"version": "0.9.3",
"description": "A CLI tool to apply a curated GitHub labels template to any repository using gh CLI.",
"type": "module",
"bin": {
"ghlt": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outfile dist/index.js --target node",
"dev": "bun run build && node dist/index.js",
"preview": "bun run build && node dist/index.js preview",
"start": "bun run build && node dist/index.js",
"test": "bun test",
"prepack": "bun run build"
},
"engines": {
"node": ">=22",
"bun": ">=1.0"
},
"keywords": [
"github",
"labels",
"template",
"cli",
"gh"
],
"author": "Waren Gonzaga",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/warengonzaga/github-labels-template.git"
},
"dependencies": {
"@github/copilot-sdk": "^0.1.25",
"@inquirer/prompts": "^8.2.1",
"@wgtechlabs/log-engine": "^2.3.1",
"citty": "^0.1.6",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/bun": "latest"
}
}