@cupel-sh/cli 0.0.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 ADDED
@@ -0,0 +1,4 @@
1
+ # cupel
2
+
3
+ Reachability-first SCA for npm. Placeholder while under active development.
4
+ https://cupel.sh
package/bin/cupel.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("cupel: reachability-first SCA — coming soon. https://cupel.sh");
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@cupel-sh/cli",
3
+ "version": "0.0.0",
4
+ "description": "Reachability-first SCA for npm — placeholder, under active development.",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://cupel.sh",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/cupel-sh/cupel.git"
10
+ },
11
+ "bin": {
12
+ "cupel": "bin/cupel.js"
13
+ },
14
+ "files": [
15
+ "bin",
16
+ "README.md"
17
+ ],
18
+ "engines": {
19
+ "node": ">=20"
20
+ }
21
+ }