this.me 3.1.4 → 3.1.6

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 (2) hide show
  1. package/README.md +12 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -8,11 +8,17 @@
8
8
  ```bash
9
9
  npm install this.me
10
10
  ```
11
+
12
+ <p align="right">
13
+ <a href="https://neurons-me.github.io/.me/docs/">✍ Read the Docs →</a>
14
+ </p>
15
+
11
16
  ## **Start .me in 60 seconds**
17
+
12
18
  ###### Import
13
19
  ```ts
14
- import ME from "this.me";
15
- const me = new ME();
20
+ import Me from "this.me";
21
+ const me = new Me();
16
22
  ```
17
23
 
18
24
  ###### **Declare** Your Identity.
@@ -231,6 +237,10 @@ The behavior is identical, bit-by-bit, because the logic is part of the state.
231
237
 
232
238
  ##### License
233
239
  **MIT © 2025 by https://neurons.me**
240
+
234
241
  See the [LICENSE](./LICENSE) file for details.
242
+
235
243
  **∴ Witness our seal**
244
+
236
245
  **suiGn**
246
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "this.me",
3
- "version": "3.1.4",
3
+ "version": "3.1.6",
4
4
  "type": "module",
5
5
  "main": "./dist/me.cjs",
6
6
  "module": "./dist/me.es.js",
@@ -26,7 +26,8 @@
26
26
  "docs:api:watch": "typedoc --watch",
27
27
  "docs:dev": "vitepress dev docs",
28
28
  "docs:build": "vitepress build docs",
29
- "docs:preview": "vitepress preview docs"
29
+ "docs:preview": "vitepress preview docs",
30
+ "docs:publish": "npm run docs:build && rm -rf ../docs && mkdir -p ../docs && cp -R docs/.vitepress/dist/* ../docs/ && touch ../docs/.nojekyll"
30
31
  },
31
32
  "files": [
32
33
  "dist"