this.me 2.7.8 → 2.7.9

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/docs/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  # This.Me
4
4
 
5
+
5
6
  **This.Me** is a digital identity representation of **Me** as it encapsulates the essence of an entity which is then passed for cryptographic guarantees.
6
7
 
7
8
  Users no longer depend on centralized authorities for **identity and data management**. They hold the keys (literally) to their identity and data.
@@ -125,7 +125,8 @@
125
125
 
126
126
  import os from 'os';
127
127
  import Me from '../me.js';
128
- import program from 'commander';
128
+ import { Command } from 'commander';
129
+ const program = new Command();
129
130
  import inquirer from 'inquirer';
130
131
  import fs from 'fs';
131
132
  import path from 'path';
@@ -267,7 +267,7 @@ Author: SuiGn</div>
267
267
  <p class="tag-source">
268
268
  <a href="cli_main.js.html" class="button">View Source</a>
269
269
  <span>
270
- <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line133">line 133</a>
270
+ <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line134">line 134</a>
271
271
  </span>
272
272
  </p>
273
273
 
@@ -370,7 +370,7 @@ Author: SuiGn</div>
370
370
  <p class="tag-source">
371
371
  <a href="cli_main.js.html" class="button">View Source</a>
372
372
  <span>
373
- <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line70">line 70</a>
373
+ <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line71">line 71</a>
374
374
  </span>
375
375
  </p>
376
376
 
@@ -498,7 +498,7 @@ Author: SuiGn</div>
498
498
  <p class="tag-source">
499
499
  <a href="cli_main.js.html" class="button">View Source</a>
500
500
  <span>
501
- <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line55">line 55</a>
501
+ <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line56">line 56</a>
502
502
  </span>
503
503
  </p>
504
504
 
@@ -627,7 +627,7 @@ Continuously prompts the user for actions until an exit command is given.
627
627
  <p class="tag-source">
628
628
  <a href="cli_main.js.html" class="button">View Source</a>
629
629
  <span>
630
- <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line141">line 141</a>
630
+ <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line142">line 142</a>
631
631
  </span>
632
632
  </p>
633
633
 
@@ -728,7 +728,7 @@ Continuously prompts the user for actions until an exit command is given.
728
728
  <p class="tag-source">
729
729
  <a href="cli_main.js.html" class="button">View Source</a>
730
730
  <span>
731
- <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line30">line 30</a>
731
+ <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line31">line 31</a>
732
732
  </span>
733
733
  </p>
734
734
 
@@ -880,7 +880,7 @@ Continuously prompts the user for actions until an exit command is given.
880
880
  <p class="tag-source">
881
881
  <a href="cli_main.js.html" class="button">View Source</a>
882
882
  <span>
883
- <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line118">line 118</a>
883
+ <a href="cli_main.js.html">cli/main.js</a>, <a href="cli_main.js.html#line119">line 119</a>
884
884
  </span>
885
885
  </p>
886
886
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "this.me",
3
- "version": "2.7.8",
4
- "description": "A package to setup a user-centric system identity. Starts by creating a .me object, you can add your own properties to it. This is me. This.me who is here",
3
+ "version": "2.7.9",
4
+ "description": "User-Centric OS.",
5
5
  "bin": {
6
6
  ".me": "./src/cli/main.js"
7
7
  },
@@ -14,13 +14,10 @@
14
14
  "build": "browserify src/me.js -s Me -o dist/me.bundle.js",
15
15
  "keywords": [
16
16
  "this.me",
17
- "user",
18
- "user-centric system",
19
- "Data Sovereignty"
17
+ "user"
20
18
  ],
21
19
  "devDependencies": {
22
- "browserify": "^17.0.0",
23
- "jsdoc": "^4.0.2"
20
+ "browserify": "^17.0.0"
24
21
  },
25
22
  "repository": {
26
23
  "type": "git",
@@ -32,6 +29,7 @@
32
29
  "license": "MIT",
33
30
  "repoType": "NPM Package",
34
31
  "dependencies": {
32
+ "commander": "^11.1.0",
35
33
  "inquirer": "^9.2.12"
36
34
  }
37
35
  }
package/src/cli/main.js CHANGED
@@ -7,7 +7,8 @@
7
7
 
8
8
  import os from 'os';
9
9
  import Me from '../me.js';
10
- import program from 'commander';
10
+ import { Command } from 'commander';
11
+ const program = new Command();
11
12
  import inquirer from 'inquirer';
12
13
  import fs from 'fs';
13
14
  import path from 'path';