trac-peer 0.4.3 → 0.4.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "trac-peer",
3
3
  "main": "src/index.js",
4
- "version": "0.4.3",
4
+ "version": "0.4.4",
5
5
  "type": "module",
6
6
  "pear": {
7
7
  "name": "trac-peer",
package/src/index.js CHANGED
@@ -14,12 +14,14 @@ import { handlerFor } from './operations/index.js';
14
14
  import TransactionPool from './transaction/transactionPool.js';
15
15
  import { TransactionObserver } from './tasks/transactionObserver.js';
16
16
  import { Updater } from './tasks/updater.js';
17
+ export { ensureTextCodecs } from './textCodec.js';
17
18
  export {default as Protocol} from "./artifacts/protocol.js";
18
19
  export {default as Contract} from "./artifacts/contract.js";
19
20
  export {default as Feature} from "./artifacts/feature.js";
20
21
  export {default as Wallet} from "./wallet.js";
21
22
  export { ENV, createConfig } from './config/env.js';
22
23
  export { Config } from './config/config.js';
24
+ export { Terminal } from './terminal/index.js';
23
25
 
24
26
  export class Peer extends ReadyResource {
25
27
  constructor(options) {