kubun 0.12.0 → 0.12.1
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/lib/identity.d.ts +2 -2
- package/package.json +24 -21
package/lib/identity.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { Identity, OwnIdentity } from '@kokuin/token';
|
|
1
|
+
import type { DIDString, Identity, OwnIdentity } from '@kokuin/token';
|
|
2
2
|
type Logger = {
|
|
3
3
|
warn: (message: string, properties?: Record<string, unknown>) => void;
|
|
4
4
|
};
|
|
5
5
|
export type IdentityOptions = {
|
|
6
6
|
privateKey?: string;
|
|
7
|
-
id?:
|
|
7
|
+
id?: DIDString;
|
|
8
8
|
p2p?: boolean;
|
|
9
9
|
};
|
|
10
10
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubun",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "Kubun CLI",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "see LICENSE.md",
|
|
@@ -16,41 +16,44 @@
|
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@hono/node-server": "^2.1.0",
|
|
19
|
-
"@kokuin/token": "^0.
|
|
19
|
+
"@kokuin/token": "^0.4.0",
|
|
20
20
|
"@logtape/logtape": "^2.3.0",
|
|
21
|
-
"@mokei/context-server": "^0.
|
|
21
|
+
"@mokei/context-server": "^0.12.0",
|
|
22
22
|
"@sozai/codec": "^0.4.0",
|
|
23
|
-
"@tejika/cli": "^0.4.
|
|
24
|
-
"@tejika/env": "^0.
|
|
25
|
-
"@tejika/ui": "^0.4.
|
|
23
|
+
"@tejika/cli": "^0.4.1",
|
|
24
|
+
"@tejika/env": "^0.5.0",
|
|
25
|
+
"@tejika/ui": "^0.4.1",
|
|
26
26
|
"commander": "^15.0.0",
|
|
27
27
|
"graphql": "^16.14.2",
|
|
28
28
|
"ink": "^7.1.1",
|
|
29
29
|
"react": "19.2.3",
|
|
30
|
-
"@kubun/
|
|
31
|
-
"@kubun/
|
|
32
|
-
"@kubun/db
|
|
33
|
-
"@kubun/
|
|
34
|
-
"@kubun/
|
|
30
|
+
"@kubun/client": "^0.12.1",
|
|
31
|
+
"@kubun/db-postgres": "^0.12.1",
|
|
32
|
+
"@kubun/db": "^0.12.1",
|
|
33
|
+
"@kubun/db-node-sqlite": "^0.12.1",
|
|
34
|
+
"@kubun/engine": "^0.12.1",
|
|
35
|
+
"@kubun/graphql": "^0.13.0",
|
|
36
|
+
"@kubun/http-client": "^0.12.1",
|
|
35
37
|
"@kubun/logger": "^0.12.0",
|
|
36
|
-
"@kubun/
|
|
37
|
-
"@kubun/
|
|
38
|
-
"@kubun/hub": "^0.12.
|
|
39
|
-
"@kubun/
|
|
40
|
-
"@kubun/
|
|
41
|
-
"@kubun/plugin-
|
|
42
|
-
"@kubun/protocol": "^0.12.0",
|
|
43
|
-
"@kubun/plugin-rpc": "^0.12.0"
|
|
38
|
+
"@kubun/mcp": "^0.12.1",
|
|
39
|
+
"@kubun/plugin-http": "^0.12.1",
|
|
40
|
+
"@kubun/hub": "^0.12.1",
|
|
41
|
+
"@kubun/plugin-p2p": "^0.12.1",
|
|
42
|
+
"@kubun/protocol": "^0.13.0",
|
|
43
|
+
"@kubun/plugin-rpc": "^0.12.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"ink-testing-library": "^4.0.0",
|
|
47
|
-
"@kubun/store-graph": "^0.12.0",
|
|
48
47
|
"@kubun/id": "^0.12.0",
|
|
49
|
-
"@kubun/store-
|
|
48
|
+
"@kubun/store-graph": "^0.13.0",
|
|
49
|
+
"@kubun/store-p2p": "^0.12.1"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=22.0.0"
|
|
53
53
|
},
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
56
|
+
},
|
|
54
57
|
"scripts": {
|
|
55
58
|
"build": "pnpm run build:clean && pnpm run build:js && pnpm run build:types",
|
|
56
59
|
"build:clean": "del lib",
|