forked from Everduin94/better-commits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "better-commits",
"private": false,
"version": "1.11.0",
"description": "A CLI for creating better commits following the conventional commits specification",
"author": "Erik Verduin (https://github.com/everduin94)",
"keywords": [
"typescript",
"cli",
"git",
"commit"
],
"main": "dist/index.js",
"bin": {
"better-commits-init": "./dist/init.js",
"better-commits": "./dist/index.js",
"better-branch": "./dist/branch.js",
"bcommits": "./dist/index.js",
"git-bc": "./dist/index.js"
},
"license": "MIT",
"dependencies": {
"@clack/core": "^0.3.1",
"@clack/prompts": "^0.6.2",
"configstore": "^5.0.1",
"picocolors": "^1.0.0",
"zod": "^3.21.3",
"zod-validation-error": "^1.0.1"
},
"scripts": {
"start": "jiti ./src/index.ts",
"branch": "jiti ./src/branch.ts",
"init": "jiti ./src/init.ts",
"build": "tsup ./src/",
"commit": "jiti ./src/index.ts"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/configstore": "^6.0.0",
"@types/node": "^18.14.5",
"jiti": "^1.17.0",
"semantic-release": "^21.0.1",
"tsup": "^6.6.3",
"tsx": "^3.12.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}