sickbay 1.0.0 → 1.1.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/README.md +30 -0
- package/package.json +22 -6
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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
|
package/package.json
CHANGED
|
@@ -1,13 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sickbay",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Zero-config project health diagnostics for TypeScript, React, and Node projects. Trend, diff, and monitor the vitals of your codebase.",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"sickbay": "./index.js"
|
|
8
|
+
},
|
|
6
9
|
"scripts": {
|
|
7
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
11
|
},
|
|
9
|
-
"keywords": [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
"keywords": [
|
|
13
|
+
"cli",
|
|
14
|
+
"developer-tools",
|
|
15
|
+
"health-check",
|
|
16
|
+
"diagnostics",
|
|
17
|
+
"typescript",
|
|
18
|
+
"react",
|
|
19
|
+
"node",
|
|
20
|
+
"devtools",
|
|
21
|
+
"codebase",
|
|
22
|
+
"metrics"
|
|
23
|
+
],
|
|
24
|
+
"author": "tracericochet",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=18.0.0"
|
|
28
|
+
}
|
|
13
29
|
}
|