certcrypt 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/LICENSE +1 -0
- package/README.md +1 -0
- package/index.js +1 -0
- package/package.json +10 -0
package/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Copyright (c) 2025-2026 CERTCRYPT, S.L. or its affiliates. All rights reserved. No license is granted.
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Reserved for CERTCRYPT. See https://certcrypt.com
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
throw new Error("certcrypt is reserved. See https://certcrypt.com");
|
package/package.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "certcrypt",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Reserved for CERTCRYPT — see https://certcrypt.com",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"homepage": "https://certcrypt.com",
|
|
7
|
+
"author": "CERTCRYPT, S.L.",
|
|
8
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
9
|
+
"publishConfig": {"access": "public"}
|
|
10
|
+
}
|