@@ -4,14 +4,14 @@ import type {
4
4
AgentChildProcessInput ,
5
5
AgentChildProcessOutput ,
6
6
} from '../types' ;
7
- import type PolykeyAgent from '@matrixai/ polykey/dist/PolykeyAgent' ;
8
- import type { RecoveryCode } from '@matrixai/ polykey/dist/keys/types' ;
7
+ import type PolykeyAgent from 'polykey/dist/PolykeyAgent' ;
8
+ import type { RecoveryCode } from 'polykey/dist/keys/types' ;
9
9
import path from 'path' ;
10
10
import childProcess from 'child_process' ;
11
11
import process from 'process' ;
12
- import * as keysErrors from '@matrixai/ polykey/dist/keys/errors' ;
13
- import { promise , dirEmpty } from '@matrixai/ polykey/dist/utils' ;
14
- import config from '@matrixai/ polykey/dist/config' ;
12
+ import * as keysErrors from 'polykey/dist/keys/errors' ;
13
+ import { promise , dirEmpty } from 'polykey/dist/utils' ;
14
+ import config from 'polykey/dist/config' ;
15
15
import CommandPolykey from '../CommandPolykey' ;
16
16
import * as binUtils from '../utils' ;
17
17
import * as binOptions from '../utils/options' ;
@@ -45,10 +45,10 @@ class CommandStart extends CommandPolykey {
45
45
options . clientPort =
46
46
options . clientPort ?? config . defaults . networkConfig . clientPort ;
47
47
const { default : PolykeyAgent } = await import (
48
- '@matrixai/ polykey/dist/PolykeyAgent'
48
+ 'polykey/dist/PolykeyAgent'
49
49
) ;
50
- const nodesUtils = await import ( '@matrixai/ polykey/dist/nodes/utils' ) ;
51
- const keysUtils = await import ( '@matrixai/ polykey/dist/keys/utils' ) ;
50
+ const nodesUtils = await import ( 'polykey/dist/nodes/utils' ) ;
51
+ const keysUtils = await import ( 'polykey/dist/keys/utils' ) ;
52
52
let password : string | undefined ;
53
53
if ( options . fresh ) {
54
54
// If fresh, then get a new password
0 commit comments