@indra.ai/deva 1.1.99 → 1.1.100

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/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2,6 +2,9 @@
2
2
  // Distributed under the MIT software license, see the accompanying
3
3
  // file LICENSE.md or http://www.opensource.org/licenses/mit-license.php.
4
4
  const {EventEmitter} = require('events');
5
+ const fs = require('fs');
6
+ const path = require('path');
7
+
5
8
  const { createHash, randomUUID, createCipheriv, createDecipheriv, randomBytes } = require('crypto');
6
9
  const config = require('./config.json').DATA // load the deva core configuration data.
7
10
  class Deva {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indra.ai/deva",
3
- "version": "1.1.99",
3
+ "version": "1.1.100",
4
4
  "description": "The Deva Core",
5
5
  "main": "index.js",
6
6
  "scripts": {