sra-skills 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 +12 -0
  2. package/index.mjs +23 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # sra-skills
2
+
3
+ **This package has moved.**
4
+
5
+ `sra-skills` is no longer published on the public npm registry. It has moved to
6
+ an internal npm registry and is intended for internal use only.
7
+
8
+ This public package is **unmaintained** and provides **no functionality** — it
9
+ only prints this notice.
10
+
11
+ If you have access, follow the installation instructions in the **SRA Toolkit
12
+ repository README**.
package/index.mjs ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env node
2
+ // Public-registry stub for `sra-skills`.
3
+ // The real installer moved to an internal npm registry and is intended for
4
+ // internal use only. This stub carries NO internal hostnames, URLs, or package
5
+ // names — it only points users to the SRA Toolkit repository README.
6
+
7
+ const NOTICE = [
8
+ "",
9
+ "============================================================",
10
+ " sra-skills is no longer published on the public registry.",
11
+ "",
12
+ " It has moved to an internal npm registry and is intended",
13
+ " for internal use only. This public package is unmaintained",
14
+ " and provides no functionality.",
15
+ "",
16
+ " If you have access, follow the installation instructions",
17
+ " in the SRA Toolkit repository README.",
18
+ "============================================================",
19
+ "",
20
+ ].join("\n");
21
+
22
+ console.log(NOTICE);
23
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "sra-skills",
3
+ "version": "1.0.0",
4
+ "description": "Moved to an internal npm registry — this public package is unmaintained and provides no functionality. See the SRA Toolkit repository README.",
5
+ "bin": {
6
+ "sra": "index.mjs",
7
+ "sra-skills": "index.mjs"
8
+ },
9
+ "files": [
10
+ "index.mjs",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "postinstall": "node ./index.mjs"
15
+ },
16
+ "license": "UNLICENSED",
17
+ "type": "module"
18
+ }