-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "cli-conventional-commit",
"version": "1.0.1",
"description": "A CLI tool for creating conventional commits with interactive prompts",
"keywords": [
"cli",
"commit",
"conventional",
"git",
"gitmoji",
"semantic-release"
],
"license": "MIT",
"author": "morgbn",
"repository": {
"type": "git",
"url": "git+https://github.com/Morgbn/cli-conventional-commit.git"
},
"bin": {
"ccommit": "dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"typecheck": "tsc --noEmit",
"build:cli": "bun build ./index.ts --outfile ./dist/index.js --target=node --format=esm",
"build": "bun build --compile --target=bun-linux-x64 ./index.ts --outfile ./dist/ccommit",
"build:all": "bun build --compile --target=bun-linux-x64 ./index.ts --outfile ./dist/ccommit-linux-x64 && bun build --compile --target=bun-windows-x64 ./index.ts --outfile ./dist/ccommit-windows-x64.exe && bun build --compile --target=bun-darwin-x64 ./index.ts --outfile ./dist/ccommit-macos-x64 && bun build --compile --target=bun-darwin-arm64 ./index.ts --outfile ./dist/ccommit-macos-arm64",
"prepublishOnly": "bun run build:cli",
"prepare": "husky"
},
"devDependencies": {
"@clack/core": "^1.0.1",
"@clack/prompts": "^1.0.1",
"@types/bun": "latest",
"chalk": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"oxfmt": "^0.65.0",
"oxlint": "^1.56.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxlint --fix",
"oxfmt"
]
},
"packageManager": "bun"
}