-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
50
51
52
53
54
{
"name": "release-github-action",
"version": "3.0.1",
"description": "Create a semantic release for your Github Action",
"repository": "https://github.com/wow-actions/release-github-action",
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"main": "dist/index.js",
"files": [
"dist",
"action.yml"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --fix",
"prebuild": "run-s lint clean",
"build": "ncc build src/index.ts --minify --v8-cache"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/error": "^3.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@wow-actions/parse-inputs": "^2.0.1",
"semantic-release": "^19.0.5"
},
"devDependencies": {
"@bubkoo/eslint-config": "^3.1.0",
"@bubkoo/husky-hooks": "^2.0.0",
"@bubkoo/prettier-config": "^2.0.0",
"@bubkoo/tsconfig": "^2.0.0",
"@types/node": "^22.7.5",
"@types/semantic-release": "^20.0.6",
"@types/semantic-release__error": "^3.0.3",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.12.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0"
}
}