@pkcprotocol/pkc-js 0.0.74 → 0.0.76
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 +34 -1
- package/dist/browser/clients/rpc-client/pkc-rpc-client.d.ts +3 -1
- package/dist/browser/clients/rpc-client/pkc-rpc-client.js +12 -1
- package/dist/browser/clients/rpc-client/pkc-rpc-client.js.map +1 -1
- package/dist/browser/clients/rpc-client/rpc-schema-util.d.ts +18 -0
- package/dist/browser/clients/rpc-client/rpc-schema-util.js +5 -1
- package/dist/browser/clients/rpc-client/rpc-schema-util.js.map +1 -1
- package/dist/browser/clients/rpc-client/schema.d.ts +15 -0
- package/dist/browser/clients/rpc-client/schema.js +20 -0
- package/dist/browser/clients/rpc-client/schema.js.map +1 -1
- package/dist/browser/clients/rpc-client/types.d.ts +3 -2
- package/dist/browser/community/community-client-manager.js +9 -9
- package/dist/browser/community/community-client-manager.js.map +1 -1
- package/dist/browser/community/rpc-local-community.d.ts +6 -1
- package/dist/browser/community/rpc-local-community.js +32 -0
- package/dist/browser/community/rpc-local-community.js.map +1 -1
- package/dist/browser/community/schema.d.ts +15 -0
- package/dist/browser/community/schema.js +16 -1
- package/dist/browser/community/schema.js.map +1 -1
- package/dist/browser/community/types.d.ts +14 -1
- package/dist/browser/constants.d.ts +3 -1
- package/dist/browser/constants.js +9 -1
- package/dist/browser/constants.js.map +1 -1
- package/dist/browser/errors.d.ts +10 -0
- package/dist/browser/errors.js +10 -0
- package/dist/browser/errors.js.map +1 -1
- package/dist/browser/generated-version.d.ts +1 -1
- package/dist/browser/generated-version.js +1 -1
- package/dist/browser/helia/helia-for-pkc.d.ts +1 -1
- package/dist/browser/helia/helia-for-pkc.js +41 -5
- package/dist/browser/helia/helia-for-pkc.js.map +1 -1
- package/dist/browser/helia/lru-blockstore.d.ts +92 -0
- package/dist/browser/helia/lru-blockstore.js +224 -0
- package/dist/browser/helia/lru-blockstore.js.map +1 -0
- package/dist/browser/index-with-compile-cache.d.ts +2 -0
- package/dist/browser/index-with-compile-cache.js +1 -0
- package/dist/browser/index-with-compile-cache.js.map +1 -1
- package/dist/browser/index.d.ts +3 -0
- package/dist/browser/index.js +8 -0
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/pkc/pkc.js +41 -4
- package/dist/browser/pkc/pkc.js.map +1 -1
- package/dist/browser/pkc-error.d.ts +1 -1
- package/dist/browser/rpc/src/index.d.ts +4 -1
- package/dist/browser/rpc/src/index.js +29 -1
- package/dist/browser/rpc/src/index.js.map +1 -1
- package/dist/browser/rpc/src/lib/pkc-js/index.d.ts +1 -0
- package/dist/browser/rpc/src/schema.d.ts +16 -0
- package/dist/browser/runtime/browser/blockstore.d.ts +25 -0
- package/dist/browser/runtime/browser/blockstore.js +40 -0
- package/dist/browser/runtime/browser/blockstore.js.map +1 -0
- package/dist/browser/runtime/node/blockstore.d.ts +32 -0
- package/dist/browser/runtime/node/blockstore.js +42 -0
- package/dist/browser/runtime/node/blockstore.js.map +1 -0
- package/dist/browser/runtime/node/community/local-community/anchor-publishing.d.ts +9 -0
- package/dist/browser/runtime/node/community/local-community/anchor-publishing.js +197 -0
- package/dist/browser/runtime/node/community/local-community/anchor-publishing.js.map +1 -0
- package/dist/browser/runtime/node/community/local-community/db-state.js +22 -4
- package/dist/browser/runtime/node/community/local-community/db-state.js.map +1 -1
- package/dist/browser/runtime/node/community/local-community/identity.d.ts +2 -0
- package/dist/browser/runtime/node/community/local-community/identity.js +13 -0
- package/dist/browser/runtime/node/community/local-community/identity.js.map +1 -0
- package/dist/browser/runtime/node/community/local-community/lifecycle.js +24 -0
- package/dist/browser/runtime/node/community/local-community/lifecycle.js.map +1 -1
- package/dist/browser/runtime/node/community/local-community/publication-store.js +7 -3
- package/dist/browser/runtime/node/community/local-community/publication-store.js.map +1 -1
- package/dist/browser/runtime/node/community/local-community/publication-validation.js +6 -2
- package/dist/browser/runtime/node/community/local-community/publication-validation.js.map +1 -1
- package/dist/browser/runtime/node/community/local-community.d.ts +5 -1
- package/dist/browser/runtime/node/community/local-community.js +47 -6
- package/dist/browser/runtime/node/community/local-community.js.map +1 -1
- package/dist/browser/schema/schema-util.d.ts +6 -0
- package/dist/browser/schema/schema.d.ts +1 -0
- package/dist/browser/schema/schema.js +11 -0
- package/dist/browser/schema/schema.js.map +1 -1
- package/dist/browser/schema.d.ts +20 -0
- package/dist/browser/schema.js +11 -1
- package/dist/browser/schema.js.map +1 -1
- package/dist/browser/signer/index.d.ts +1 -0
- package/dist/browser/signer/index.js +1 -0
- package/dist/browser/signer/index.js.map +1 -1
- package/dist/browser/signer/ipns-record.d.ts +7 -0
- package/dist/browser/signer/ipns-record.js +34 -0
- package/dist/browser/signer/ipns-record.js.map +1 -0
- package/dist/browser/signer/signatures.d.ts +2 -2
- package/dist/browser/signer/signatures.js +18 -6
- package/dist/browser/signer/signatures.js.map +1 -1
- package/dist/browser/test/test-util.d.ts +4 -0
- package/dist/bundled/bundle-manifest.json +204 -92
- package/dist/bundled/chunks/helia-for-pkc-cKp6JSwA.js +6915 -0
- package/dist/bundled/chunks/{local-community-Br1ipu1Z.js → local-community-B3Fhrtiy.js} +205 -38
- package/dist/bundled/chunks/{local-community-CIVs_iuS.js → local-community-DerKPzJm.js} +1 -1
- package/dist/bundled/chunks/{node-Cn7VaPDJ.js → node-DffqRPit.js} +43 -9
- package/dist/bundled/chunks/{rpc-local-community-DtdeJBOq.js → rpc-local-community-BdNiruAf.js} +96 -38
- package/dist/bundled/chunks/{schema-B1Ot-kux.js → schema-BvBJX6m7.js} +29 -5
- package/dist/bundled/chunks/{src-o_MYSn-E.js → src-B2CwDTfy.js} +2 -142
- package/dist/bundled/chunks/{src-4u0f92eE.js → src-BEjAH2gY.js} +3 -128
- package/dist/bundled/chunks/src-Cpx2Sts8.js +127 -0
- package/dist/bundled/chunks/src-DKntVmyX.js +142 -0
- package/dist/bundled/chunks/{util-B6v5HAdy.js → util-BRxHPb9G.js} +1 -1
- package/dist/bundled/index-with-compile-cache.js +2 -1
- package/dist/bundled/index.js +2 -2
- package/dist/bundled/rpc/src/index.js +27 -4
- package/dist/node/clients/rpc-client/pkc-rpc-client.d.ts +3 -1
- package/dist/node/clients/rpc-client/pkc-rpc-client.js +12 -1
- package/dist/node/clients/rpc-client/pkc-rpc-client.js.map +1 -1
- package/dist/node/clients/rpc-client/rpc-schema-util.d.ts +18 -0
- package/dist/node/clients/rpc-client/rpc-schema-util.js +5 -1
- package/dist/node/clients/rpc-client/rpc-schema-util.js.map +1 -1
- package/dist/node/clients/rpc-client/schema.d.ts +15 -0
- package/dist/node/clients/rpc-client/schema.js +20 -0
- package/dist/node/clients/rpc-client/schema.js.map +1 -1
- package/dist/node/clients/rpc-client/types.d.ts +3 -2
- package/dist/node/community/community-client-manager.js +9 -9
- package/dist/node/community/community-client-manager.js.map +1 -1
- package/dist/node/community/rpc-local-community.d.ts +6 -1
- package/dist/node/community/rpc-local-community.js +32 -0
- package/dist/node/community/rpc-local-community.js.map +1 -1
- package/dist/node/community/schema.d.ts +15 -0
- package/dist/node/community/schema.js +16 -1
- package/dist/node/community/schema.js.map +1 -1
- package/dist/node/community/types.d.ts +14 -1
- package/dist/node/constants.d.ts +3 -1
- package/dist/node/constants.js +9 -1
- package/dist/node/constants.js.map +1 -1
- package/dist/node/errors.d.ts +10 -0
- package/dist/node/errors.js +10 -0
- package/dist/node/errors.js.map +1 -1
- package/dist/node/generated-version.d.ts +1 -1
- package/dist/node/generated-version.js +1 -1
- package/dist/node/helia/helia-for-pkc.d.ts +1 -1
- package/dist/node/helia/helia-for-pkc.js +41 -5
- package/dist/node/helia/helia-for-pkc.js.map +1 -1
- package/dist/node/helia/lru-blockstore.d.ts +92 -0
- package/dist/node/helia/lru-blockstore.js +224 -0
- package/dist/node/helia/lru-blockstore.js.map +1 -0
- package/dist/node/index-with-compile-cache.d.ts +2 -0
- package/dist/node/index-with-compile-cache.js +1 -0
- package/dist/node/index-with-compile-cache.js.map +1 -1
- package/dist/node/index.d.ts +3 -0
- package/dist/node/index.js +8 -0
- package/dist/node/index.js.map +1 -1
- package/dist/node/pkc/pkc.js +41 -4
- package/dist/node/pkc/pkc.js.map +1 -1
- package/dist/node/pkc-error.d.ts +1 -1
- package/dist/node/rpc/src/index.d.ts +4 -1
- package/dist/node/rpc/src/index.js +29 -1
- package/dist/node/rpc/src/index.js.map +1 -1
- package/dist/node/rpc/src/lib/pkc-js/index.d.ts +1 -0
- package/dist/node/rpc/src/schema.d.ts +16 -0
- package/dist/node/runtime/browser/blockstore.d.ts +25 -0
- package/dist/node/runtime/browser/blockstore.js +40 -0
- package/dist/node/runtime/browser/blockstore.js.map +1 -0
- package/dist/node/runtime/node/blockstore.d.ts +32 -0
- package/dist/node/runtime/node/blockstore.js +42 -0
- package/dist/node/runtime/node/blockstore.js.map +1 -0
- package/dist/node/runtime/node/community/local-community/anchor-publishing.d.ts +9 -0
- package/dist/node/runtime/node/community/local-community/anchor-publishing.js +197 -0
- package/dist/node/runtime/node/community/local-community/anchor-publishing.js.map +1 -0
- package/dist/node/runtime/node/community/local-community/db-state.js +22 -4
- package/dist/node/runtime/node/community/local-community/db-state.js.map +1 -1
- package/dist/node/runtime/node/community/local-community/identity.d.ts +2 -0
- package/dist/node/runtime/node/community/local-community/identity.js +13 -0
- package/dist/node/runtime/node/community/local-community/identity.js.map +1 -0
- package/dist/node/runtime/node/community/local-community/lifecycle.js +24 -0
- package/dist/node/runtime/node/community/local-community/lifecycle.js.map +1 -1
- package/dist/node/runtime/node/community/local-community/publication-store.js +7 -3
- package/dist/node/runtime/node/community/local-community/publication-store.js.map +1 -1
- package/dist/node/runtime/node/community/local-community/publication-validation.js +6 -2
- package/dist/node/runtime/node/community/local-community/publication-validation.js.map +1 -1
- package/dist/node/runtime/node/community/local-community.d.ts +5 -1
- package/dist/node/runtime/node/community/local-community.js +47 -6
- package/dist/node/runtime/node/community/local-community.js.map +1 -1
- package/dist/node/schema/schema-util.d.ts +6 -0
- package/dist/node/schema/schema.d.ts +1 -0
- package/dist/node/schema/schema.js +11 -0
- package/dist/node/schema/schema.js.map +1 -1
- package/dist/node/schema.d.ts +20 -0
- package/dist/node/schema.js +11 -1
- package/dist/node/schema.js.map +1 -1
- package/dist/node/signer/index.d.ts +1 -0
- package/dist/node/signer/index.js +1 -0
- package/dist/node/signer/index.js.map +1 -1
- package/dist/node/signer/ipns-record.d.ts +7 -0
- package/dist/node/signer/ipns-record.js +34 -0
- package/dist/node/signer/ipns-record.js.map +1 -0
- package/dist/node/signer/signatures.d.ts +2 -2
- package/dist/node/signer/signatures.js +18 -6
- package/dist/node/signer/signatures.js.map +1 -1
- package/dist/node/test/test-util.d.ts +4 -0
- package/package.json +8 -5
- package/dist/bundled/chunks/helia-for-pkc-B-75U9z9.js +0 -495
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node:module"
|
|
15
15
|
],
|
|
16
16
|
"dynamicImports": [
|
|
17
|
-
"chunks/node-
|
|
17
|
+
"chunks/node-DffqRPit.js"
|
|
18
18
|
],
|
|
19
19
|
"inputs": [
|
|
20
20
|
"dist/node/runtime/node/compile-cache.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"index.js": {
|
|
25
25
|
"isEntry": true,
|
|
26
26
|
"imports": [
|
|
27
|
-
"chunks/node-
|
|
27
|
+
"chunks/node-DffqRPit.js"
|
|
28
28
|
],
|
|
29
29
|
"dynamicImports": [],
|
|
30
30
|
"inputs": []
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"rpc/src/index.js": {
|
|
33
33
|
"isEntry": true,
|
|
34
34
|
"imports": [
|
|
35
|
-
"chunks/rpc-local-community-
|
|
36
|
-
"chunks/node-
|
|
37
|
-
"chunks/schema-
|
|
38
|
-
"chunks/local-community-
|
|
35
|
+
"chunks/rpc-local-community-BdNiruAf.js",
|
|
36
|
+
"chunks/node-DffqRPit.js",
|
|
37
|
+
"chunks/schema-BvBJX6m7.js",
|
|
38
|
+
"chunks/local-community-B3Fhrtiy.js",
|
|
39
39
|
"node:url",
|
|
40
40
|
"path",
|
|
41
41
|
"assert",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"crypto",
|
|
45
45
|
"better-sqlite3",
|
|
46
46
|
"uint8arrays/to-string",
|
|
47
|
+
"uint8arrays/from-string",
|
|
47
48
|
"rpc-websockets"
|
|
48
49
|
],
|
|
49
50
|
"dynamicImports": [],
|
|
@@ -64,13 +65,22 @@
|
|
|
64
65
|
"\u0000rolldown/runtime.js"
|
|
65
66
|
]
|
|
66
67
|
},
|
|
67
|
-
"chunks/helia-for-pkc-
|
|
68
|
+
"chunks/helia-for-pkc-cKp6JSwA.js": {
|
|
68
69
|
"isEntry": false,
|
|
69
70
|
"imports": [
|
|
70
|
-
"chunks/
|
|
71
|
-
"chunks/
|
|
71
|
+
"chunks/chunk-2rV9d50f.js",
|
|
72
|
+
"chunks/schema-BvBJX6m7.js",
|
|
73
|
+
"chunks/util-BRxHPb9G.js",
|
|
74
|
+
"chunks/src-DKntVmyX.js",
|
|
75
|
+
"chunks/src-Cpx2Sts8.js",
|
|
76
|
+
"node:url",
|
|
77
|
+
"node:fs/promises",
|
|
78
|
+
"node:path",
|
|
79
|
+
"path",
|
|
72
80
|
"multiformats/cid",
|
|
73
81
|
"@libp2p/peer-id",
|
|
82
|
+
"multiformats/hashes/digest",
|
|
83
|
+
"multiformats/bases/base32",
|
|
74
84
|
"events",
|
|
75
85
|
"helia",
|
|
76
86
|
"@helia/ipns",
|
|
@@ -80,6 +90,7 @@
|
|
|
80
90
|
"@libp2p/identify",
|
|
81
91
|
"@helia/block-brokers",
|
|
82
92
|
"blockstore-core",
|
|
93
|
+
"multiformats/codecs/raw",
|
|
83
94
|
"@helia/delegated-routing-v1-http-api-client",
|
|
84
95
|
"@libp2p/interface",
|
|
85
96
|
"@helia/unixfs",
|
|
@@ -89,17 +100,98 @@
|
|
|
89
100
|
"dynamicImports": [],
|
|
90
101
|
"inputs": [
|
|
91
102
|
"dist/node/runtime/node/libp2p-extra-transports.js",
|
|
103
|
+
"node_modules/blockstore-fs/node_modules/interface-store/dist/src/errors.js",
|
|
104
|
+
"node_modules/fast-glob/out/utils/array.js",
|
|
105
|
+
"node_modules/fast-glob/out/utils/errno.js",
|
|
106
|
+
"node_modules/fast-glob/out/utils/fs.js",
|
|
107
|
+
"node_modules/fast-glob/out/utils/path.js",
|
|
108
|
+
"node_modules/is-extglob/index.js",
|
|
109
|
+
"node_modules/is-glob/index.js",
|
|
110
|
+
"node_modules/glob-parent/index.js",
|
|
111
|
+
"node_modules/braces/lib/utils.js",
|
|
112
|
+
"node_modules/braces/lib/stringify.js",
|
|
113
|
+
"node_modules/is-number/index.js",
|
|
114
|
+
"node_modules/to-regex-range/index.js",
|
|
115
|
+
"node_modules/fill-range/index.js",
|
|
116
|
+
"node_modules/braces/lib/compile.js",
|
|
117
|
+
"node_modules/braces/lib/expand.js",
|
|
118
|
+
"node_modules/braces/lib/constants.js",
|
|
119
|
+
"node_modules/braces/lib/parse.js",
|
|
120
|
+
"node_modules/braces/index.js",
|
|
121
|
+
"node_modules/picomatch/lib/constants.js",
|
|
122
|
+
"node_modules/picomatch/lib/utils.js",
|
|
123
|
+
"node_modules/picomatch/lib/scan.js",
|
|
124
|
+
"node_modules/picomatch/lib/parse.js",
|
|
125
|
+
"node_modules/picomatch/lib/picomatch.js",
|
|
126
|
+
"node_modules/picomatch/index.js",
|
|
127
|
+
"node_modules/micromatch/index.js",
|
|
128
|
+
"node_modules/fast-glob/out/utils/pattern.js",
|
|
129
|
+
"node_modules/merge2/index.js",
|
|
130
|
+
"node_modules/fast-glob/out/utils/stream.js",
|
|
131
|
+
"node_modules/fast-glob/out/utils/string.js",
|
|
132
|
+
"node_modules/fast-glob/out/utils/index.js",
|
|
133
|
+
"node_modules/fast-glob/out/managers/tasks.js",
|
|
134
|
+
"node_modules/@nodelib/fs.stat/out/providers/async.js",
|
|
135
|
+
"node_modules/@nodelib/fs.stat/out/providers/sync.js",
|
|
136
|
+
"node_modules/@nodelib/fs.stat/out/adapters/fs.js",
|
|
137
|
+
"node_modules/@nodelib/fs.stat/out/settings.js",
|
|
138
|
+
"node_modules/@nodelib/fs.stat/out/index.js",
|
|
139
|
+
"node_modules/queue-microtask/index.js",
|
|
140
|
+
"node_modules/run-parallel/index.js",
|
|
141
|
+
"node_modules/@nodelib/fs.scandir/out/constants.js",
|
|
142
|
+
"node_modules/@nodelib/fs.scandir/out/utils/fs.js",
|
|
143
|
+
"node_modules/@nodelib/fs.scandir/out/utils/index.js",
|
|
144
|
+
"node_modules/@nodelib/fs.scandir/out/providers/common.js",
|
|
145
|
+
"node_modules/@nodelib/fs.scandir/out/providers/async.js",
|
|
146
|
+
"node_modules/@nodelib/fs.scandir/out/providers/sync.js",
|
|
147
|
+
"node_modules/@nodelib/fs.scandir/out/adapters/fs.js",
|
|
148
|
+
"node_modules/@nodelib/fs.scandir/out/settings.js",
|
|
149
|
+
"node_modules/@nodelib/fs.scandir/out/index.js",
|
|
150
|
+
"node_modules/reusify/reusify.js",
|
|
151
|
+
"node_modules/fastq/queue.js",
|
|
152
|
+
"node_modules/@nodelib/fs.walk/out/readers/common.js",
|
|
153
|
+
"node_modules/@nodelib/fs.walk/out/readers/reader.js",
|
|
154
|
+
"node_modules/@nodelib/fs.walk/out/readers/async.js",
|
|
155
|
+
"node_modules/@nodelib/fs.walk/out/providers/async.js",
|
|
156
|
+
"node_modules/@nodelib/fs.walk/out/providers/stream.js",
|
|
157
|
+
"node_modules/@nodelib/fs.walk/out/readers/sync.js",
|
|
158
|
+
"node_modules/@nodelib/fs.walk/out/providers/sync.js",
|
|
159
|
+
"node_modules/@nodelib/fs.walk/out/settings.js",
|
|
160
|
+
"node_modules/@nodelib/fs.walk/out/index.js",
|
|
161
|
+
"node_modules/fast-glob/out/readers/reader.js",
|
|
162
|
+
"node_modules/fast-glob/out/readers/stream.js",
|
|
163
|
+
"node_modules/fast-glob/out/readers/async.js",
|
|
164
|
+
"node_modules/fast-glob/out/providers/matchers/matcher.js",
|
|
165
|
+
"node_modules/fast-glob/out/providers/matchers/partial.js",
|
|
166
|
+
"node_modules/fast-glob/out/providers/filters/deep.js",
|
|
167
|
+
"node_modules/fast-glob/out/providers/filters/entry.js",
|
|
168
|
+
"node_modules/fast-glob/out/providers/filters/error.js",
|
|
169
|
+
"node_modules/fast-glob/out/providers/transformers/entry.js",
|
|
170
|
+
"node_modules/fast-glob/out/providers/provider.js",
|
|
171
|
+
"node_modules/fast-glob/out/providers/async.js",
|
|
172
|
+
"node_modules/fast-glob/out/providers/stream.js",
|
|
173
|
+
"node_modules/fast-glob/out/readers/sync.js",
|
|
174
|
+
"node_modules/fast-glob/out/providers/sync.js",
|
|
175
|
+
"node_modules/fast-glob/out/settings.js",
|
|
176
|
+
"node_modules/fast-glob/out/index.js",
|
|
177
|
+
"node_modules/it-glob/dist/src/index.js",
|
|
178
|
+
"node_modules/race-signal/dist/src/index.js",
|
|
179
|
+
"node_modules/steno/lib/index.js",
|
|
180
|
+
"node_modules/blockstore-fs/dist/src/sharding.js",
|
|
181
|
+
"node_modules/blockstore-fs/dist/src/index.js",
|
|
182
|
+
"dist/node/runtime/node/blockstore.js",
|
|
183
|
+
"dist/node/helia/lru-blockstore.js",
|
|
92
184
|
"dist/node/helia/libp2pjsClient.js",
|
|
93
185
|
"dist/node/helia/dial-transport-filter.js",
|
|
94
186
|
"dist/node/helia/helia-for-pkc.js"
|
|
95
187
|
]
|
|
96
188
|
},
|
|
97
|
-
"chunks/local-community-
|
|
189
|
+
"chunks/local-community-B3Fhrtiy.js": {
|
|
98
190
|
"isEntry": false,
|
|
99
191
|
"imports": [
|
|
100
192
|
"chunks/chunk-2rV9d50f.js",
|
|
101
|
-
"chunks/rpc-local-community-
|
|
102
|
-
"chunks/schema-
|
|
193
|
+
"chunks/rpc-local-community-BdNiruAf.js",
|
|
194
|
+
"chunks/schema-BvBJX6m7.js",
|
|
103
195
|
"node:crypto",
|
|
104
196
|
"node:url",
|
|
105
197
|
"node:path",
|
|
@@ -110,6 +202,7 @@
|
|
|
110
202
|
"fs",
|
|
111
203
|
"better-sqlite3",
|
|
112
204
|
"multiformats/cid",
|
|
205
|
+
"@libp2p/peer-id",
|
|
113
206
|
"typestub-ipfs-only-hash"
|
|
114
207
|
],
|
|
115
208
|
"dynamicImports": [],
|
|
@@ -118,6 +211,8 @@
|
|
|
118
211
|
"node_modules/remeda/dist/groupBy.js",
|
|
119
212
|
"node_modules/remeda/dist/sumBy.js",
|
|
120
213
|
"node_modules/remeda/dist/uniqueBy.js",
|
|
214
|
+
"dist/node/runtime/node/community/local-community/identity.js",
|
|
215
|
+
"dist/node/runtime/node/community/local-community/anchor-publishing.js",
|
|
121
216
|
"dist/node/runtime/node/community/local-community/comment-updates.js",
|
|
122
217
|
"dist/node/runtime/node/community/local-community/cleanup.js",
|
|
123
218
|
"node_modules/uuid/dist-node/native.js",
|
|
@@ -152,21 +247,21 @@
|
|
|
152
247
|
"dist/node/runtime/node/community/local-community.js"
|
|
153
248
|
]
|
|
154
249
|
},
|
|
155
|
-
"chunks/local-community-
|
|
250
|
+
"chunks/local-community-DerKPzJm.js": {
|
|
156
251
|
"isEntry": false,
|
|
157
252
|
"imports": [
|
|
158
|
-
"chunks/local-community-
|
|
253
|
+
"chunks/local-community-B3Fhrtiy.js"
|
|
159
254
|
],
|
|
160
255
|
"dynamicImports": [],
|
|
161
256
|
"inputs": []
|
|
162
257
|
},
|
|
163
|
-
"chunks/node-
|
|
258
|
+
"chunks/node-DffqRPit.js": {
|
|
164
259
|
"isEntry": false,
|
|
165
260
|
"imports": [
|
|
166
261
|
"chunks/chunk-2rV9d50f.js",
|
|
167
|
-
"chunks/rpc-local-community-
|
|
168
|
-
"chunks/schema-
|
|
169
|
-
"chunks/util-
|
|
262
|
+
"chunks/rpc-local-community-BdNiruAf.js",
|
|
263
|
+
"chunks/schema-BvBJX6m7.js",
|
|
264
|
+
"chunks/util-BRxHPb9G.js",
|
|
170
265
|
"path",
|
|
171
266
|
"assert",
|
|
172
267
|
"fs",
|
|
@@ -177,8 +272,8 @@
|
|
|
177
272
|
"rpc-websockets"
|
|
178
273
|
],
|
|
179
274
|
"dynamicImports": [
|
|
180
|
-
"chunks/helia-for-pkc-
|
|
181
|
-
"chunks/local-community-
|
|
275
|
+
"chunks/helia-for-pkc-cKp6JSwA.js",
|
|
276
|
+
"chunks/local-community-B3Fhrtiy.js"
|
|
182
277
|
],
|
|
183
278
|
"inputs": [
|
|
184
279
|
"node_modules/zod/v4/locales/en.js",
|
|
@@ -231,11 +326,11 @@
|
|
|
231
326
|
"dist/node/index.js"
|
|
232
327
|
]
|
|
233
328
|
},
|
|
234
|
-
"chunks/rpc-local-community-
|
|
329
|
+
"chunks/rpc-local-community-BdNiruAf.js": {
|
|
235
330
|
"isEntry": false,
|
|
236
331
|
"imports": [
|
|
237
332
|
"chunks/chunk-2rV9d50f.js",
|
|
238
|
-
"chunks/schema-
|
|
333
|
+
"chunks/schema-BvBJX6m7.js",
|
|
239
334
|
"chunks/src-CYIMjhjK.js",
|
|
240
335
|
"node:http",
|
|
241
336
|
"node:crypto",
|
|
@@ -251,10 +346,10 @@
|
|
|
251
346
|
"http",
|
|
252
347
|
"better-sqlite3",
|
|
253
348
|
"multiformats/cid",
|
|
349
|
+
"@libp2p/peer-id",
|
|
254
350
|
"multiformats/hashes/digest",
|
|
255
351
|
"typestub-ipfs-only-hash",
|
|
256
352
|
"uint8arrays/to-string",
|
|
257
|
-
"@libp2p/peer-id",
|
|
258
353
|
"@libp2p/crypto/keys",
|
|
259
354
|
"uint8arrays/from-string",
|
|
260
355
|
"multiformats/basics",
|
|
@@ -264,7 +359,7 @@
|
|
|
264
359
|
"perf_hooks"
|
|
265
360
|
],
|
|
266
361
|
"dynamicImports": [
|
|
267
|
-
"chunks/src-
|
|
362
|
+
"chunks/src-BEjAH2gY.js"
|
|
268
363
|
],
|
|
269
364
|
"inputs": [
|
|
270
365
|
"node_modules/undici/lib/core/symbols.js",
|
|
@@ -754,6 +849,7 @@
|
|
|
754
849
|
"node_modules/node-forge/lib/ssh.js",
|
|
755
850
|
"node_modules/node-forge/lib/index.js",
|
|
756
851
|
"dist/node/signer/encryption.js",
|
|
852
|
+
"dist/node/signer/ipns-record.js",
|
|
757
853
|
"dist/node/signer/index.js",
|
|
758
854
|
"dist/node/clients/rpc-client/decode-rpc-response-util.js",
|
|
759
855
|
"dist/node/runtime/node/community/keyv-better-sqlite3.js",
|
|
@@ -791,21 +887,21 @@
|
|
|
791
887
|
"dist/node/community/rpc-local-community.js"
|
|
792
888
|
]
|
|
793
889
|
},
|
|
794
|
-
"chunks/schema-
|
|
890
|
+
"chunks/schema-BvBJX6m7.js": {
|
|
795
891
|
"isEntry": false,
|
|
796
892
|
"imports": [
|
|
797
893
|
"chunks/chunk-2rV9d50f.js",
|
|
798
894
|
"buffer",
|
|
799
895
|
"multiformats/cid",
|
|
896
|
+
"@libp2p/peer-id",
|
|
800
897
|
"multiformats/hashes/digest",
|
|
801
898
|
"multiformats/bases/base58",
|
|
802
899
|
"typestub-ipfs-only-hash",
|
|
803
900
|
"uint8arrays/to-string",
|
|
804
|
-
"multiformats/bases/base32"
|
|
805
|
-
"@libp2p/peer-id"
|
|
901
|
+
"multiformats/bases/base32"
|
|
806
902
|
],
|
|
807
903
|
"dynamicImports": [
|
|
808
|
-
"chunks/src-
|
|
904
|
+
"chunks/src-B2CwDTfy.js"
|
|
809
905
|
],
|
|
810
906
|
"inputs": [
|
|
811
907
|
"node_modules/zod/v4/core/core.js",
|
|
@@ -883,18 +979,82 @@
|
|
|
883
979
|
"dist/node/pubsub-messages/schema.js"
|
|
884
980
|
]
|
|
885
981
|
},
|
|
886
|
-
"chunks/src-
|
|
982
|
+
"chunks/src-B2CwDTfy.js": {
|
|
983
|
+
"isEntry": false,
|
|
984
|
+
"imports": [
|
|
985
|
+
"chunks/chunk-2rV9d50f.js",
|
|
986
|
+
"chunks/src-BOzgM7Fp.js",
|
|
987
|
+
"chunks/src-DKntVmyX.js",
|
|
988
|
+
"multiformats/cid",
|
|
989
|
+
"uint8arrays/from-string",
|
|
990
|
+
"uint8arrays/concat",
|
|
991
|
+
"uint8arrays/equals",
|
|
992
|
+
"multiformats/codecs/raw",
|
|
993
|
+
"uint8arrays/alloc",
|
|
994
|
+
"uint8arrays/with-array-buffer",
|
|
995
|
+
"multiformats/hashes/sha2",
|
|
996
|
+
"@multiformats/murmur3",
|
|
997
|
+
"blockstore-core/black-hole"
|
|
998
|
+
],
|
|
999
|
+
"dynamicImports": [],
|
|
1000
|
+
"inputs": [
|
|
1001
|
+
"node_modules/ipfs-unixfs-importer/node_modules/uint8arraylist/dist/src/index.js",
|
|
1002
|
+
"node_modules/ipfs-unixfs-importer/dist/src/constants.js",
|
|
1003
|
+
"node_modules/ipfs-unixfs-importer/dist/src/chunker/fixed-size.js",
|
|
1004
|
+
"node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs/dist/src/errors.js",
|
|
1005
|
+
"node_modules/ipfs-unixfs-importer/node_modules/uint8-varint/dist/src/index.js",
|
|
1006
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/float.js",
|
|
1007
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/longbits.js",
|
|
1008
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/utf8.js",
|
|
1009
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/reader.js",
|
|
1010
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/decode.js",
|
|
1011
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/pool.js",
|
|
1012
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/writer.js",
|
|
1013
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/encode.js",
|
|
1014
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/stream.js",
|
|
1015
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/codec.js",
|
|
1016
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/codecs/enum.js",
|
|
1017
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/codecs/message.js",
|
|
1018
|
+
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/index.js",
|
|
1019
|
+
"node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs/dist/src/unixfs.js",
|
|
1020
|
+
"node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs/dist/src/index.js",
|
|
1021
|
+
"node_modules/progress-events/dist/src/index.js",
|
|
1022
|
+
"node_modules/ipfs-unixfs-importer/dist/src/utils/persist.js",
|
|
1023
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/buffer-importer.js",
|
|
1024
|
+
"node_modules/ipfs-unixfs-importer/dist/src/errors.js",
|
|
1025
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/dir.js",
|
|
1026
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/file.js",
|
|
1027
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/index.js",
|
|
1028
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/validate-chunks.js",
|
|
1029
|
+
"node_modules/ipfs-unixfs-importer/dist/src/layout/balanced.js",
|
|
1030
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dir.js",
|
|
1031
|
+
"node_modules/ipfs-unixfs-importer/dist/src/utils/pb-size.js",
|
|
1032
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dir-flat.js",
|
|
1033
|
+
"node_modules/sparse-array/index.js",
|
|
1034
|
+
"node_modules/hamt-sharding/dist/src/bucket.js",
|
|
1035
|
+
"node_modules/hamt-sharding/dist/src/consumable-buffer.js",
|
|
1036
|
+
"node_modules/hamt-sharding/dist/src/consumable-hash.js",
|
|
1037
|
+
"node_modules/hamt-sharding/dist/src/index.js",
|
|
1038
|
+
"node_modules/ipfs-unixfs-importer/dist/src/dir-sharded.js",
|
|
1039
|
+
"node_modules/ipfs-unixfs-importer/dist/src/flat-to-shard.js",
|
|
1040
|
+
"node_modules/ipfs-unixfs-importer/dist/src/utils/to-path-components.js",
|
|
1041
|
+
"node_modules/ipfs-unixfs-importer/dist/src/tree-builder.js",
|
|
1042
|
+
"node_modules/ipfs-unixfs-importer/dist/src/index.js"
|
|
1043
|
+
]
|
|
1044
|
+
},
|
|
1045
|
+
"chunks/src-BEjAH2gY.js": {
|
|
887
1046
|
"isEntry": false,
|
|
888
1047
|
"imports": [
|
|
889
1048
|
"chunks/chunk-2rV9d50f.js",
|
|
890
1049
|
"chunks/src-BOzgM7Fp.js",
|
|
891
1050
|
"chunks/src-CYIMjhjK.js",
|
|
1051
|
+
"chunks/src-Cpx2Sts8.js",
|
|
892
1052
|
"node:http",
|
|
893
1053
|
"node:buffer",
|
|
894
1054
|
"node:crypto",
|
|
895
1055
|
"multiformats/cid",
|
|
896
|
-
"uint8arrays/to-string",
|
|
897
1056
|
"@libp2p/peer-id",
|
|
1057
|
+
"uint8arrays/to-string",
|
|
898
1058
|
"@libp2p/crypto/keys",
|
|
899
1059
|
"uint8arrays/from-string",
|
|
900
1060
|
"multiformats/basics",
|
|
@@ -962,8 +1122,6 @@
|
|
|
962
1122
|
"node_modules/wherearewe/src/index.js",
|
|
963
1123
|
"node_modules/browser-readablestream-to-it/dist/src/index.js",
|
|
964
1124
|
"node_modules/err-code/index.js",
|
|
965
|
-
"node_modules/it-peekable/dist/src/index.js",
|
|
966
|
-
"node_modules/it-map/dist/src/index.js",
|
|
967
1125
|
"node_modules/kubo-rpc-client/dist/src/lib/errors.js",
|
|
968
1126
|
"node_modules/kubo-rpc-client/dist/src/lib/files/utils.js",
|
|
969
1127
|
"node_modules/kubo-rpc-client/dist/src/lib/files/normalise-candidate-multiple.js",
|
|
@@ -1164,74 +1322,28 @@
|
|
|
1164
1322
|
"node_modules/it-all/dist/src/index.js"
|
|
1165
1323
|
]
|
|
1166
1324
|
},
|
|
1167
|
-
"chunks/src-
|
|
1325
|
+
"chunks/src-Cpx2Sts8.js": {
|
|
1168
1326
|
"isEntry": false,
|
|
1169
|
-
"imports": [
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
"
|
|
1173
|
-
"
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
"multiformats/hashes/sha2",
|
|
1180
|
-
"@multiformats/murmur3",
|
|
1181
|
-
"blockstore-core/black-hole"
|
|
1182
|
-
],
|
|
1327
|
+
"imports": [],
|
|
1328
|
+
"dynamicImports": [],
|
|
1329
|
+
"inputs": [
|
|
1330
|
+
"node_modules/it-peekable/dist/src/index.js",
|
|
1331
|
+
"node_modules/it-map/dist/src/index.js"
|
|
1332
|
+
]
|
|
1333
|
+
},
|
|
1334
|
+
"chunks/src-DKntVmyX.js": {
|
|
1335
|
+
"isEntry": false,
|
|
1336
|
+
"imports": [],
|
|
1183
1337
|
"dynamicImports": [],
|
|
1184
1338
|
"inputs": [
|
|
1185
1339
|
"node_modules/it-batch/dist/src/index.js",
|
|
1186
|
-
"node_modules/it-parallel-batch/dist/src/index.js"
|
|
1187
|
-
"node_modules/ipfs-unixfs-importer/node_modules/uint8arraylist/dist/src/index.js",
|
|
1188
|
-
"node_modules/ipfs-unixfs-importer/dist/src/constants.js",
|
|
1189
|
-
"node_modules/ipfs-unixfs-importer/dist/src/chunker/fixed-size.js",
|
|
1190
|
-
"node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs/dist/src/errors.js",
|
|
1191
|
-
"node_modules/ipfs-unixfs-importer/node_modules/uint8-varint/dist/src/index.js",
|
|
1192
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/float.js",
|
|
1193
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/longbits.js",
|
|
1194
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/utf8.js",
|
|
1195
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/reader.js",
|
|
1196
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/decode.js",
|
|
1197
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/pool.js",
|
|
1198
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/utils/writer.js",
|
|
1199
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/encode.js",
|
|
1200
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/stream.js",
|
|
1201
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/codec.js",
|
|
1202
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/codecs/enum.js",
|
|
1203
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/codecs/message.js",
|
|
1204
|
-
"node_modules/ipfs-unixfs-importer/node_modules/protons-runtime/dist/src/index.js",
|
|
1205
|
-
"node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs/dist/src/unixfs.js",
|
|
1206
|
-
"node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs/dist/src/index.js",
|
|
1207
|
-
"node_modules/progress-events/dist/src/index.js",
|
|
1208
|
-
"node_modules/ipfs-unixfs-importer/dist/src/utils/persist.js",
|
|
1209
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/buffer-importer.js",
|
|
1210
|
-
"node_modules/ipfs-unixfs-importer/dist/src/errors.js",
|
|
1211
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/dir.js",
|
|
1212
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/file.js",
|
|
1213
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/index.js",
|
|
1214
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dag-builder/validate-chunks.js",
|
|
1215
|
-
"node_modules/ipfs-unixfs-importer/dist/src/layout/balanced.js",
|
|
1216
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dir.js",
|
|
1217
|
-
"node_modules/ipfs-unixfs-importer/dist/src/utils/pb-size.js",
|
|
1218
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dir-flat.js",
|
|
1219
|
-
"node_modules/sparse-array/index.js",
|
|
1220
|
-
"node_modules/hamt-sharding/dist/src/bucket.js",
|
|
1221
|
-
"node_modules/hamt-sharding/dist/src/consumable-buffer.js",
|
|
1222
|
-
"node_modules/hamt-sharding/dist/src/consumable-hash.js",
|
|
1223
|
-
"node_modules/hamt-sharding/dist/src/index.js",
|
|
1224
|
-
"node_modules/ipfs-unixfs-importer/dist/src/dir-sharded.js",
|
|
1225
|
-
"node_modules/ipfs-unixfs-importer/dist/src/flat-to-shard.js",
|
|
1226
|
-
"node_modules/ipfs-unixfs-importer/dist/src/utils/to-path-components.js",
|
|
1227
|
-
"node_modules/ipfs-unixfs-importer/dist/src/tree-builder.js",
|
|
1228
|
-
"node_modules/ipfs-unixfs-importer/dist/src/index.js"
|
|
1340
|
+
"node_modules/it-parallel-batch/dist/src/index.js"
|
|
1229
1341
|
]
|
|
1230
1342
|
},
|
|
1231
|
-
"chunks/util-
|
|
1343
|
+
"chunks/util-BRxHPb9G.js": {
|
|
1232
1344
|
"isEntry": false,
|
|
1233
1345
|
"imports": [
|
|
1234
|
-
"chunks/schema-
|
|
1346
|
+
"chunks/schema-BvBJX6m7.js",
|
|
1235
1347
|
"ipns/selector",
|
|
1236
1348
|
"uint8arrays/equals"
|
|
1237
1349
|
],
|