forked from ruochuan12/juejin-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "juejin-actions",
"version": "1.0.0",
"description": "juejin-actions",
"type": "module",
"main": "dist/index.cjs",
"scripts": {
"preinstall": "npx only-allow pnpm",
"commit": "git-cz",
"release": "release-it",
"test": "node test/test.js",
"build": "esbuild --bundle index.js --format=cjs --platform=node --outfile=dist/index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lxchuan12/juejin-actions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lxchuan12/juejin-actions/issues"
},
"homepage": "https://github.com/lxchuan12/juejin-actions#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"axios": "^0.24.0",
"nodemailer": "^6.7.2"
},
"release-it": {
"git": {
"commitMessage": "release: release v${version}"
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"devDependencies": {
"@release-it/conventional-changelog": "^4.1.0",
"esbuild": "^0.14.10",
"git-cz": "^4.8.0",
"release-it": "^14.12.1"
}
}