sork-queb 1.1.0 → 1.1.1
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 +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -386,8 +386,10 @@ The verifier. Watches the fix pipeline and confirms vulnerabilities are resolved
|
|
|
386
386
|
|
|
387
387
|
### Installation & Setup
|
|
388
388
|
|
|
389
|
+
#### Option 1: Global Installation (Recommended)
|
|
390
|
+
|
|
389
391
|
```bash
|
|
390
|
-
# Install globally
|
|
392
|
+
# Install globally (one-time)
|
|
391
393
|
npm install -g sork-queb
|
|
392
394
|
|
|
393
395
|
# Initialize in your project
|
|
@@ -404,6 +406,17 @@ sork fix
|
|
|
404
406
|
sork setup-hooks
|
|
405
407
|
```
|
|
406
408
|
|
|
409
|
+
#### Option 2: Use npx (No Installation)
|
|
410
|
+
|
|
411
|
+
```bash
|
|
412
|
+
# Run without installing globally - always latest version
|
|
413
|
+
cd your-project
|
|
414
|
+
npx sork-queb init
|
|
415
|
+
npx sork-queb scan
|
|
416
|
+
npx sork-queb fix
|
|
417
|
+
npx sork-queb setup-hooks
|
|
418
|
+
```
|
|
419
|
+
|
|
407
420
|
### Usage
|
|
408
421
|
|
|
409
422
|
**Run Security Scan:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sork-queb",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "SORK - Security Orchestration, Remediation & Keeping. Global AI security brain for Node projects with Prettier, ESLint & Zod validation.",
|
|
5
5
|
"main": "dist/lib/index.js",
|
|
6
6
|
"types": "dist/lib/index.d.ts",
|