sickbay 1.1.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin.mjs +2 -0
- package/package.json +22 -19
- package/README.md +0 -30
package/bin.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sickbay",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Zero-config
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"sickbay": "./index.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
|
-
},
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "Zero-config health check CLI for JavaScript and TypeScript projects",
|
|
12
5
|
"keywords": [
|
|
13
6
|
"cli",
|
|
14
|
-
"
|
|
7
|
+
"code-quality",
|
|
8
|
+
"dependencies",
|
|
15
9
|
"health-check",
|
|
16
|
-
"diagnostics",
|
|
17
|
-
"typescript",
|
|
18
|
-
"react",
|
|
19
10
|
"node",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
11
|
+
"react",
|
|
12
|
+
"security",
|
|
13
|
+
"typescript"
|
|
23
14
|
],
|
|
24
|
-
"author": "tracericochet",
|
|
25
15
|
"license": "MIT",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/nebulord-dev/sickbay"
|
|
19
|
+
},
|
|
20
|
+
"bin": {
|
|
21
|
+
"sickbay": "./bin.mjs"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"bin.mjs"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@nebulord/sickbay": "1.3.0"
|
|
28
31
|
}
|
|
29
32
|
}
|
package/README.md
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# sickbay
|
|
2
|
-
|
|
3
|
-
> Zero-config project health diagnostics for TypeScript, React, and Node projects.
|
|
4
|
-
|
|
5
|
-
`sickbay` is where your project goes when something's wrong. It runs a suite of health checks against your codebase and surfaces what's hurting — dependency risk, config drift, coverage gaps, and more — without any setup required.
|
|
6
|
-
|
|
7
|
-
## Status
|
|
8
|
-
|
|
9
|
-
🚧 **Under active development.** Name reserved. Coming soon.
|
|
10
|
-
|
|
11
|
-
## Planned Usage
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npx sickbay
|
|
15
|
-
npx sickbay doctor
|
|
16
|
-
npx sickbay trend
|
|
17
|
-
npx sickbay stats
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Part of the @nebulord suite
|
|
21
|
-
|
|
22
|
-
- [`gitlore`](https://npmjs.com/package/gitlore) — git history archaeology
|
|
23
|
-
- [`darkstar`](https://npmjs.com/package/darkstar) — environment sentinel
|
|
24
|
-
- [`bootdrift`](https://npmjs.com/package/bootdrift) — startup time regression tracker
|
|
25
|
-
- [`bundlespy`](https://npmjs.com/package/bundlespy) — bundle size CI tracker
|
|
26
|
-
- [`readmecheck`](https://npmjs.com/package/readmecheck) — README execution auditor
|
|
27
|
-
|
|
28
|
-
## License
|
|
29
|
-
|
|
30
|
-
MIT
|