-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "conmmit",
"version": "0.0.6",
"description": "A CLI that helps you create conventional commits (a.k.a conmmits)",
"keywords": ["commit", "commits", "conventional commits", "cli", "git", "bun"],
"homepage": "https://github.com/renejfc/conmmit#readme",
"bugs": {
"url": "https://github.com/renejfc/conmmit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/renejfc/conmmit.git"
},
"license": "MIT",
"author": {
"name": "ReneJFC",
"url": "https://x.com/ReneJFC_"
},
"type": "module",
"main": "src/main.ts",
"bin": "src/main.ts",
"scripts": {
"comp": "bun scripts/build.ts",
"dev": "bun scripts/dev.ts",
"format": "biome format src",
"format:fix": "biome format src --write",
"postinstall": "bunx lefthook install",
"lint": "biome lint src",
"lint:fix": "biome lint src --write",
"magic:fix": "biome check src --write",
"release": "bun magic:fix && changelogen --release --push --publish",
"start": "NODE_ENV=production bun src/index.ts",
"typecheck": "tsc"
},
"dependencies": {
"@bomb.sh/args": "^0.3.1",
"@clack/prompts": "^0.9.1",
"picocolors": "^1.1.1",
"valibot": "^1.0.0-beta.14"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.0",
"changelogen": "^0.5.7",
"lefthook": "^1.10.10",
"typescript": "^5.7.3"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"trustedDependencies": ["@biomejs/biome"]
}