-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.16 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.16 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
{
"name": "simple-release-action",
"type": "module",
"description": "A simple action to release projects with monorepo support.",
"author": "Dan Onoshko <danon0404@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/TrigenSoftware/simple-release-action/tree/main#readme",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/simple-release-action.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/simple-release-action/issues"
},
"main": "index.js",
"scripts": {
"update-latest-branch": "git checkout latest && git reset --hard main && git push origin latest --force && git checkout main",
"update-major-branch": "git checkout v1 && git reset --hard main && git push origin v1 --force && git checkout main",
"update-branches": "npm run update-latest-branch && npm run update-major-branch"
},
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@simple-release/config": "^2.0.0",
"@simple-release/github-action": "^2.0.0",
"npm": "^11.4.1"
}
}