generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
89 lines (89 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "argo-cd-action",
"version": "0.0.0",
"private": true,
"description": "GitHub action for executing Argo CD",
"keywords": [
"github",
"actions",
"argo-cd",
"git-ops"
],
"homepage": "https://github.com/clowdhaus/argo-cd-action#readme",
"bugs": {
"url": "https://github.com/clowdhaus/argo-cd-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clowdhaus/argo-cd-action.git"
},
"license": "Apache-2.0",
"author": "Clowd Haus, LLC",
"main": "src/index.ts",
"scripts": {
"all": "yarn lint && yarn compile",
"compile": "ncc build -m",
"lint": "eslint . --quiet --fix",
"release": "semantic-release"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): version ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.2",
"@octokit/auth-action": "^5.1.1",
"@octokit/rest": "^21.1.0",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.10.7",
"@vercel/ncc": "^0.38.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.18.0",
"lint-staged": "^15.4.1",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}