-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 977 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 977 Bytes
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
{
"name": "@topdaily-dev/shipkit",
"version": "0.1.0",
"description": "Ship OSS releases safely — preflight checks, changelog, GitHub release, and npm publish in one command",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"shipkit": "bin/shipkit.mjs"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test lib/*.test.mjs",
"prepublishOnly": "npm test"
},
"keywords": [
"release",
"changelog",
"npm",
"github",
"semver",
"conventional-commits",
"cli",
"developer-tools",
"open-source"
],
"license": "MIT",
"author": "TopDaily Dev",
"repository": {
"type": "git",
"url": "git+https://github.com/topdaily-dev/shipkit.git"
},
"homepage": "https://www.npmjs.com/package/@topdaily-dev/shipkit",
"bugs": {
"url": "https://github.com/topdaily-dev/shipkit/issues"
},
"engines": {
"node": ">=20"
}
}