-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "@hugo-fixit/fixit-releaser",
"type": "module",
"version": "1.1.1",
"packageManager": "[email protected]",
"description": "Versioning, change-log and release for Hugo FixIt Similar commit style",
"author": "Lruihao (https://lruihao.cn)",
"license": "MIT",
"homepage": "https://github.com/hugo-fixit/fixit-releaser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/fixit-releaser.git"
},
"bugs": {
"url": "https://github.com/hugo-fixit/fixit-releaser/issues"
},
"keywords": [
"fixit",
"releaser",
"auto-changelog"
],
"bin": {
"fixit-releaser": "dist/bin/cli.js"
},
"files": [
"changelog",
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/bin/cli.js changelog",
"dev": "tsx ./src/bin/cli.ts changelog",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"auto-changelog": "^2.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}