File tree Expand file tree Collapse file tree 4 files changed +14
-16
lines changed
Expand file tree Collapse file tree 4 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 3939 " **/webpack-dev-server"
4040 ]
4141 },
42- "version" : " 0.8.0 "
42+ "version" : " 2.5.2 "
4343}
Original file line number Diff line number Diff line change 11{
22 "name" : " @virgilsecurity/e3kit-browser" ,
3- "version" : " 2.5.2 " ,
3+ "version" : " 2.5.4 " ,
44 "description" : " End-to-end encryption with multiple device support powered by Virgil Security" ,
55 "main" : " ./browser.cjs.js" ,
66 "module" : " ./browser.es.js" ,
2222 },
2323 "dependencies" : {
2424 "@types/level-js" : " 4.0.2" ,
25- "@virgilsecurity/e3kit-base" : " 2.5.1 " ,
25+ "@virgilsecurity/e3kit-base" : " 2.5.0 " ,
2626 "@virgilsecurity/pythia-crypto" : " 1.1.3" ,
2727 "level-js" : " ^5.0.1" ,
2828 "virgil-crypto" : " 4.2.2" ,
2929 "virgil-sdk" : " 6.1.2"
3030 },
3131 "devDependencies" : {
32- "@rollup/plugin-json" : " 5.0.0" ,
33- "@rollup/plugin-wasm" : " 6.0.0" ,
3432 "@rollup/plugin-commonjs" : " ^24.0.1" ,
33+ "@rollup/plugin-json" : " 5.0.0" ,
3534 "@rollup/plugin-node-resolve" : " ^15.0.1" ,
35+ "@rollup/plugin-wasm" : " 6.0.0" ,
3636 "cross-env" : " 7.0.3" ,
3737 "rimraf" : " 3.0.2" ,
3838 "rollup" : " 3.11.0" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ const path = require('path');
44const commonjs = require ( '@rollup/plugin-commonjs' ) ;
55const copy = require ( 'rollup-plugin-copy' ) ;
66const license = require ( 'rollup-plugin-license' ) ;
7- const nodeBuiltins = require ( 'rollup-plugin-node-builtins' ) ;
87const nodeGlobals = require ( 'rollup-plugin-node-globals' ) ;
98const nodeResolve = require ( '@rollup/plugin-node-resolve' ) ;
109const nodePolyfills = require ( 'rollup-plugin-node-polyfills' ) ;
@@ -14,7 +13,6 @@ const { generateCrossPlatformPath } = require('../../utils/build');
1413const packageJson = require ( './package.json' ) ;
1514const json = require ( '@rollup/plugin-json' ) ;
1615const wasm = require ( '@rollup/plugin-wasm' ) ;
17- const alias = require ( '@rollup/plugin-alias' ) ;
1816const PRODUCT_NAME = 'e3kit' ;
1917
2018const FORMAT = {
Original file line number Diff line number Diff line change 1- import {
2- DEFAULT_API_URL ,
3- DEFAULT_STORAGE_NAME ,
4- DEFAULT_GROUP_STORAGE_NAME ,
5- AbstractEThree ,
6- PrivateKeyLoader ,
7- IntegrityCheckFailedError ,
8- RegisterRequiredError ,
9- } from '@virgilsecurity/e3kit-base' ;
101import { initPythia , VirgilBrainKeyCrypto } from '@virgilsecurity/pythia-crypto' ;
112import leveljs from 'level-js' ;
123import {
@@ -46,6 +37,15 @@ import {
4637 EncryptSharedFileOptions ,
4738 DecryptSharedFileOptions ,
4839} from './types' ;
40+ import {
41+ AbstractEThree ,
42+ DEFAULT_API_URL ,
43+ DEFAULT_GROUP_STORAGE_NAME ,
44+ DEFAULT_STORAGE_NAME ,
45+ IntegrityCheckFailedError ,
46+ PrivateKeyLoader ,
47+ RegisterRequiredError ,
48+ } from '@virgilsecurity/e3kit-base' ;
4949
5050export class EThree extends AbstractEThree {
5151 /**
You can’t perform that action at this time.
0 commit comments