@@ -4,14 +4,14 @@ import type {
44 AgentChildProcessInput ,
55 AgentChildProcessOutput ,
66} 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' ;
99import path from 'path' ;
1010import childProcess from 'child_process' ;
1111import 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' ;
1515import CommandPolykey from '../CommandPolykey' ;
1616import * as binUtils from '../utils' ;
1717import * as binOptions from '../utils/options' ;
@@ -45,10 +45,10 @@ class CommandStart extends CommandPolykey {
4545 options . clientPort =
4646 options . clientPort ?? config . defaults . networkConfig . clientPort ;
4747 const { default : PolykeyAgent } = await import (
48- '@matrixai/ polykey/dist/PolykeyAgent'
48+ 'polykey/dist/PolykeyAgent'
4949 ) ;
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' ) ;
5252 let password : string | undefined ;
5353 if ( options . fresh ) {
5454 // If fresh, then get a new password
0 commit comments