forked from Everduin94/better-commits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.75 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
67
68
69
70
{
"name": "swift-commits",
"private": false,
"version": "1.0.3",
"description": "A CLI for creating conventional commits, but for Swifties",
"author": "Christina Martinez (https://github.com/christina-de-martinez) and Chris Pennington (https://github.com/coding-in-public)",
"type": "module",
"sideEffects": false,
"keywords": [
"typescript",
"cli",
"git",
"commit",
"taylor swift"
],
"main": "dist/index.js",
"bin": {
"swift-commits-init": "./dist/init.js",
"swift-commits": "./dist/index.js",
"swift-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",
"valibot": "^0.30.0"
},
"scripts": {
"start": "jiti ./src/index.ts",
"branch": "jiti ./src/branch.ts",
"init": "jiti ./src/init.ts",
"build": "tsup",
"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",
"prettier": "3.2.5",
"semantic-release": "^21.0.1",
"tsup": "^8.0.2",
"tsx": "^3.12.3",
"typescript": "^5.4.5"
},
"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}"
}
]
]
}
}