-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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": "gitmo",
"version": "1.0.0",
"description": "A cli tool that adds appropriate emoji to your commit message based on conventional commits specification",
"bin": {
"gitmo": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "bun run build:cli && bun run build:executables",
"prepublishOnly": "bun run build",
"clean": "rm -rf dist",
"lint": "bunx @biomejs/biome check src",
"lint:fix": "bun lint --write",
"build:cli": "bun build src/index.ts --target node --outfile dist/index.js --external shelljs --minify",
"build:executables": "pkg ./dist/index.js --output ./bin/gitmo --targets latest-linux-x64,latest-macos-x64,latest-win-x64"
},
"engines": {
"node": ">=18"
},
"files": ["dist"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ize-302/gitmo.git"
},
"keywords": ["emoji", "conventional commit"],
"author": {
"name": "ize-302",
"email": "[email protected]",
"url": "https://ize-302.dev"
},
"bugs": {
"url": "https://github.com/ize-302/gitmo/issues"
},
"homepage": "https://github.com/ize-302/gitmo",
"dependencies": {
"commander": "^12.1.0",
"pkg": "^5.8.1",
"prompts": "^2.4.2",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@types/bun": "latest",
"@types/prompts": "^2.4.9",
"@types/shelljs": "^0.8.15",
"typescript": "^5.6.2"
},
"module": "index.ts",
"main": "dist/index.js"
}