-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 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
52
53
54
55
56
57
58
59
60
{
"name": "@bring-it/notify",
"version": "0.4.0",
"description": "Send releases notifications",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "airkro@qq.com"
},
"keywords": [
"bot",
"bring-it",
"ci",
"cli",
"deployment",
"dingtalk",
"frontend",
"notify",
"release"
],
"homepage": "https://github.com/airkro/bring-it/tree/master/packages/notify",
"repository": {
"type": "git",
"url": "https://github.com/airkro/bring-it.git",
"directory": "packages/notify"
},
"bugs": {
"url": "https://github.com/airkro/bring-it/issues"
},
"bin": {
"bring-it": "dist/bin.mjs"
},
"main": "dist/sub.mjs",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "best-shot prod",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"conventional-commits-parser": "^6.0.0",
"fast-clean": "^1.4.0",
"gitlog": "^5.1.0",
"lodash": "catalog:",
"mdast-util-to-markdown": "^2.1.2",
"semver": "catalog:"
},
"peerDependencies": {
"@bring-it/cli": "workspace:~"
},
"engines": {
"node": ">=22.11.0 || ^20.18.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}