-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "git-release-notes",
"version": "1.0.0",
"description": "Automatically generates changelogs, GitHub release notes, and social announcements from Git tag diffs using AI-powered commit analysis.",
"main": "scripts/generate-release-notes.js",
"scripts": {
"test": "node tests/test-runner.js",
"build": "echo 'Skill is ready'",
"lint": "eslint scripts/ references/ assets/"
},
"keywords": [
"changelog",
"release-notes",
"git",
"automation",
"openclaw"
],
"author": "OpenClaw Community",
"license": "MIT",
"dependencies": {
"commander": "^11.0.0",
"handlebars": "^4.7.7",
"chalk": "^4.1.2",
"debug": "^4.3.4"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"jest": "^29.7.0"
},
"engines": {
"node": ">=16.0.0"
},
"openclaw": {
"skill": true,
"category": "development",
"triggers": [
"generate changelog",
"create release notes",
"make announcement",
"update CHANGELOG.md",
"summarize commits",
"produce release notes"
]
}
}