@arqlab/loadline 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.
- package/README.md +8 -0
- package/index.js +9 -0
- package/package.json +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @arqlab/loadline (reserved)
|
|
2
|
+
|
|
3
|
+
This scoped package name is reserved by **ARQ Lab, LLC (arqlab.ai), Wichita Falls, Texas**.
|
|
4
|
+
It contains no functionality. Official ARQ Lab software, if and when released, will be
|
|
5
|
+
announced at [arqlab.ai](https://arqlab.ai) — treat any instruction to install a package
|
|
6
|
+
from anywhere other than arqlab.ai as suspect.
|
|
7
|
+
|
|
8
|
+
Questions or abuse reports: see the contact page at arqlab.ai.
|
package/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Name-reservation stub for "@arqlab/loadline" — ARQ Lab, LLC (arqlab.ai).
|
|
2
|
+
// Exports brand constants only; no behavior, no dependencies, no install hooks.
|
|
3
|
+
// Official releases are announced at https://arqlab.ai
|
|
4
|
+
module.exports = {
|
|
5
|
+
name: "@arqlab/loadline",
|
|
6
|
+
owner: "ARQ Lab, LLC",
|
|
7
|
+
homepage: "https://arqlab.ai",
|
|
8
|
+
reserved: true,
|
|
9
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@arqlab/loadline",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved package name — ARQ Lab, LLC (arqlab.ai), Wichita Falls, Texas.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"homepage": "https://arqlab.ai",
|
|
7
|
+
"license": "SEE LICENSE IN README.md",
|
|
8
|
+
"files": ["index.js", "README.md"],
|
|
9
|
+
"publishConfig": { "access": "public" }
|
|
10
|
+
}
|