dino-tsdx 1.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.
Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/cli.js +2 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # dino-tsdx
2
+
3
+ āŒ Oops! You're trying to run a package that should be provided by a local binary, but isn't. This is a misconfiguration.
4
+
5
+ 🚫 This is a placeholder published to prevent dependency confusion.
6
+ šŸ”’ It does not contain any usable code.
7
+
8
+ 🧠 Double-check your dependencies or installation instructions.
9
+
10
+ šŸ”Ž Learn more at https://intel.aikido.dev
package/cli.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("āŒ Oops! You're trying to run a package that should be provided by a local binary, but isn't. This is a misconfiguration.\n\n🚫 This is a placeholder published to prevent dependency confusion.\nšŸ”’ It does not contain any usable code.\n\n🧠 Double-check your dependencies or installation instructions.\n\nšŸ”Ž Learn more at https://intel.aikido.dev");
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "dino-tsdx",
3
+ "version": "1.0.0",
4
+ "description": "🚫 Placeholder to prevent dependency confusion.",
5
+ "bin": {
6
+ "dino-tsdx": "cli.js"
7
+ },
8
+ "main": "cli.js",
9
+ "homepage": "https://intel.aikido.dev",
10
+ "keywords": [
11
+ "security",
12
+ "placeholder",
13
+ "dependency-confusion"
14
+ ],
15
+ "author": "Aikido Security",
16
+ "license": "ISC"
17
+ }