@daniel_santiago/sentinel-cli 0.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 +9 -0
- package/bin/sentinel +0 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Sentinel CLI
|
|
2
|
+
|
|
3
|
+
Sentinel CLI package built from the canonical release artifact set.
|
|
4
|
+
|
|
5
|
+
Published package name: `@daniel_santiago/sentinel-cli`.
|
|
6
|
+
|
|
7
|
+
This package is meant to be published only by the release automation after the
|
|
8
|
+
tag, project version, and canonical artifacts are verified against the current
|
|
9
|
+
HEAD of `main`.
|
package/bin/sentinel
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@daniel_santiago/sentinel-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "System-level CLI ad blocker with safe recovery workflows",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"bin": {
|
|
7
|
+
"sentinel": "bin/sentinel"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"README.md",
|
|
11
|
+
"bin/sentinel"
|
|
12
|
+
],
|
|
13
|
+
"os": [
|
|
14
|
+
"darwin",
|
|
15
|
+
"linux"
|
|
16
|
+
]
|
|
17
|
+
}
|