dcp-client 4.3.2 → 4.3.4
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 +1 -1
- package/bin/build-dcp-config +1 -1
- package/dist/dcp-client-bundle.js +1 -1
- package/index.js +2 -2
- package/libexec/sandbox/script-load-wrapper.js +7 -1
- package/ns-map.js +1 -0
- package/package.json +5 -3
- package/portal-emails.txt +0 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ This is the official client library for DCP, the Distributed Compute Protocol.
|
|
|
6
6
|
|
|
7
7
|
### Supported Platforms
|
|
8
8
|
The DCP-Client code can be made to run in nearly any JavaScript environment which supports ES5 and XMLHttpRequest. Our officially-supported platforms are
|
|
9
|
-
- Node.js version
|
|
9
|
+
- Node.js version 18+ (LTS)
|
|
10
10
|
- BravoJS, latest version
|
|
11
11
|
- Vanilla Web - no module system at all
|
|
12
12
|
|
package/bin/build-dcp-config
CHANGED
|
@@ -12,7 +12,7 @@ const fs = require('fs');
|
|
|
12
12
|
const dcpClient = require('..');
|
|
13
13
|
const assert = require('assert');
|
|
14
14
|
const { Address } = require('dcp/wallet');
|
|
15
|
-
const kvin = require('dcp/
|
|
15
|
+
const kvin = require('dcp/kvin');
|
|
16
16
|
|
|
17
17
|
let outputFd = +(process.env.BUILD_DCP_CONFIG_OUTPUT_FD || "3");
|
|
18
18
|
|