-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "github-release-workflow",
"private": true,
"version": "2.1.0",
"description": "Streamline your software delivery with a production-ready engineering workflow. Automated semantic versioning, changelog generation (via git-cliff), and aggregated release publishing across GitHub and major package registries.",
"bugs": "https://github.com/leoweyr/github-release-workflow/issues",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"bundle": "rollup --config rollup.config.mjs",
"build": "tsc --noEmit && npm run bundle"
},
"keywords": [
"automated-release",
"changelog-generator",
"ci-cd",
"conventional-commits",
"devops",
"engineering-workflow",
"git-cliff",
"github-actions",
"npm",
"npm-publish",
"package-publishing",
"package-registry",
"pipeline",
"production-ready",
"release-automation",
"reusable-workflows",
"semantic-release",
"software-delivery"
],
"author": "leoweyr <contact@leoweyr.com>",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-node-resolve": "16.0.3",
"@types/node": "26.1.2",
"esbuild": "0.28.1",
"rollup": "4.62.4",
"rollup-plugin-esbuild": "6.2.1",
"typescript": "6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leoweyr/github-release-workflow.git"
}
}