this.me 3.0.30 → 3.0.33
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 +44 -3
- package/dist/index.d.ts +1 -2
- package/dist/me.cjs +2 -2
- package/dist/me.es.js +636 -417
- package/dist/me.umd.js +2 -2
- package/dist/src/crypto.d.ts +6 -0
- package/dist/src/handleCall.d.ts +29 -0
- package/dist/src/me.d.ts +36 -96
- package/dist/src/operators.d.ts +77 -0
- package/dist/src/postulate.d.ts +46 -0
- package/dist/src/types.d.ts +245 -0
- package/package.json +26 -26
- package/dist/me.es.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "this.me",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"
|
|
5
|
-
"main": "dist/me.cjs.js",
|
|
6
|
-
"module": "dist/me.es.js",
|
|
7
|
-
"
|
|
3
|
+
"version": "3.0.33",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/me.cjs.js",
|
|
6
|
+
"module": "./dist/me.es.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
+
"browser": "./dist/me.es.js",
|
|
10
11
|
"import": "./dist/me.es.js",
|
|
11
12
|
"require": "./dist/me.cjs.js"
|
|
12
13
|
}
|
|
@@ -15,34 +16,33 @@
|
|
|
15
16
|
"dev": "vite",
|
|
16
17
|
"build": "vite build",
|
|
17
18
|
"preview": "vite preview",
|
|
18
|
-
"test:esm": "node tests/test-esm.mjs",
|
|
19
|
-
"test:cjs": "node tests/test-cjs.cjs",
|
|
20
19
|
"test:ts": "tsc --noEmit",
|
|
21
|
-
"
|
|
22
|
-
},
|
|
23
|
-
"type": "module",
|
|
24
|
-
"keywords": [
|
|
25
|
-
".me",
|
|
26
|
-
"identity",
|
|
27
|
-
"decentralized",
|
|
28
|
-
"cryptographic",
|
|
29
|
-
"signature"
|
|
30
|
-
],
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "git+https://github.com/neurons-me/this.me.git"
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
34
21
|
},
|
|
35
|
-
"homepage": "https://www.npmjs.com/package/this.me",
|
|
36
|
-
"author": "suiGn",
|
|
37
|
-
"license": "MIT",
|
|
38
22
|
"files": [
|
|
39
23
|
"dist"
|
|
40
24
|
],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"js-sha3": "^0.9.3"
|
|
27
|
+
},
|
|
41
28
|
"devDependencies": {
|
|
29
|
+
"@types/node": "^24.10.1",
|
|
42
30
|
"vite": "^7.0.6",
|
|
43
31
|
"vite-plugin-dts": "^4.5.4"
|
|
44
32
|
},
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
33
|
+
"description": ".me is your identity trust through cryptographic signatures.",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"this.me",
|
|
36
|
+
"decentralized identity",
|
|
37
|
+
"cryptographic identity",
|
|
38
|
+
"self-sovereign identity",
|
|
39
|
+
"digital identity",
|
|
40
|
+
"identity verification",
|
|
41
|
+
"blockchain identity",
|
|
42
|
+
"secure identity",
|
|
43
|
+
"identity management",
|
|
44
|
+
"decentralized authentication"
|
|
45
|
+
],
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"author": "suiGn@neurons.me"
|
|
48
48
|
}
|
package/dist/me.es.d.ts
DELETED