-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@favware/cliff-jumper",
"version": "5.0.0",
"description": "A small CLI tool to create a semantic release and git-cliff powered Changelog",
"author": "@favware",
"license": "MIT",
"type": "module",
"main": "dist/cli.js",
"bin": {
"cj": "./dist/cli.js",
"cliff-jumper": "./dist/cli.js"
},
"imports": {
"#commands/*": "./dist/commands/*.js",
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"sideEffects": "false",
"files": [
"dist/**/*.js",
"assets/"
],
"scripts": {
"debug": "node . --skip-automatic-bump --verbose --dry-run",
"start": "node . --dry-run",
"lint": "eslint src --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "yarn prettier --write .",
"update": "yarn upgrade-interactive",
"clean": "rimraf dist",
"build": "tsc -b src",
"watch": "tsc -b src -w",
"bump": "yarn build && node .",
"check-update": "yarn build && node . --dry-run"
},
"dependencies": {
"@favware/colorette-spinner": "^1.0.1",
"@octokit/auth-token": "^5.1.1",
"@octokit/core": "^6.1.2",
"@octokit/plugin-retry": "^7.1.2",
"@sapphire/result": "^2.7.2",
"@sapphire/utilities": "3.18.1",
"colorette": "^2.0.20",
"commander": "^12.1.0",
"conventional-recommended-bump": "^10.0.0",
"execa": "^9.5.1",
"git-cliff": "^2.7.0",
"js-yaml": "^4.1.0",
"semver": "^7.6.3",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.3",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "~5.4.5"
},
"engines": {
"node": ">=v18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/favware/cliff-jumper.git"
},
"bugs": {
"url": "https://github.com/favware/cliff-jumper/issues"
},
"homepage": "https://github.com/favware/cliff-jumper",
"keywords": [
"git-cliff",
"favware",
"cli",
"generator",
"changelog",
"semver",
"commit",
"conventional-changelog",
"keepachangelog",
"changelog-generator",
"conventional-commits"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "[email protected]"
}