launchprep 0.0.1 → 0.2.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 +76 -12
- package/bin/launchprep.mjs +38 -0
- package/net/client.mjs +41 -0
- package/net/commands.mjs +166 -0
- package/net/consent.mjs +57 -0
- package/net/credentials.mjs +33 -0
- package/package.json +27 -12
- package/scripts/verify-readonly.mjs +80 -0
- package/src/brand.mjs +15 -0
- package/src/checks-ai.mjs +255 -0
- package/src/checks-auth.mjs +267 -0
- package/src/checks-authz.mjs +179 -0
- package/src/checks-batch2.mjs +385 -0
- package/src/checks-batch3.mjs +327 -0
- package/src/checks-batch4.mjs +529 -0
- package/src/checks-deploy.mjs +292 -0
- package/src/checks-frameworks.mjs +337 -0
- package/src/checks-injection.mjs +322 -0
- package/src/checks.mjs +221 -0
- package/src/detect.mjs +304 -0
- package/src/digest.mjs +169 -0
- package/src/fs-scan.mjs +211 -0
- package/src/gate.mjs +103 -0
- package/src/index.mjs +71 -0
- package/src/report.mjs +101 -0
- package/src/rules.json +3661 -0
- package/src/workspace.mjs +0 -0
- package/bin/cli.js +0 -11
|
Binary file
|
package/bin/cli.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
const c = { b: '\x1b[1m', d: '\x1b[2m', a: '\x1b[38;5;209m', o: '\x1b[0m' };
|
|
3
|
-
console.log(`
|
|
4
|
-
${c.b}LAUNCHPREP${c.o} ${c.d}launch readiness checker${c.o}
|
|
5
|
-
|
|
6
|
-
Not released yet. It will read your code and tell you what will
|
|
7
|
-
break before your users find out — ${c.a}288 checks${c.o}, and it works out
|
|
8
|
-
what you built first so it only runs the ones that apply.
|
|
9
|
-
|
|
10
|
-
${c.d}https://launchprep.dev${c.o}
|
|
11
|
-
`);
|