-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 878 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 878 Bytes
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
{
"name": "cli-skill-release-harness",
"version": "0.0.0-development",
"private": true,
"description": "Release harness for the target CLI skill repository. Not published to npm.",
"type": "module",
"engines": {
"node": "^22.14.0 || >=24.10.0",
"npm": ">=10"
},
"scripts": {
"release:dry-run": "npx --yes semantic-release --dry-run --no-ci",
"release:rehearse": "node scripts/release/rehearse.mjs"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"conventional-changelog-conventionalcommits": "^9.0.0",
"semantic-release": "^25.0.0"
}
}