conduit-core 0.0.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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/index.js +3 -0
  3. package/package.json +8 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Placeholder Package
2
+
3
+ This package name has been registered on the public npm registry to **prevent dependency confusion attacks**.
4
+
5
+ It is intentionally empty and not meant for consumption.
6
+
7
+ If your build is pulling this package, your project is likely misconfigured — internal packages should be resolved from a private registry, not the public npm registry.
8
+
9
+ ## Contact
10
+
11
+ If you are the rightful owner of this package name and would like to reclaim it, please open an issue or contact the maintainer.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ throw new Error(
2
+ "Placeholder package."
3
+ );
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "conduit-core",
3
+ "version": "0.0.1",
4
+ "description": "Claiming package name as a placeholder.",
5
+ "main": "index.js",
6
+ "author": "treinnew <new@hacked.be>",
7
+ "license": "MIT"
8
+ }