Skip to content

Commit 7b23c7f

Browse files
author
Corentin Mors
authored
ESM package (#241)
1 parent f09984f commit 7b23c7f

File tree

10 files changed

+166
-199
lines changed

10 files changed

+166
-199
lines changed

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "@dashlane/cli",
33
"version": "6.2416.0",
44
"description": "Manage your Dashlane vault through a CLI tool",
5-
"main": "dist/index.js",
6-
"types": "dist/index.d.ts",
5+
"type": "module",
6+
"main": "dist/index.cjs",
77
"bin": {
8-
"dcli": "dist/index.js"
8+
"dcli": "dist/index.cjs"
99
},
1010
"pkg": {
1111
"assets": [
@@ -22,7 +22,7 @@
2222
"watch": "tsc --watch",
2323
"lint": "eslint src",
2424
"format": "prettier --write src && eslint --fix src",
25-
"start": "node dist",
25+
"start": "node dist/index.cjs",
2626
"pkg:linux": "pkg . -t node18-linux-x64 -o bundle/dcli-linux -C GZip --public --public-packages tslib,thirty-two --no-bytecode",
2727
"pkg:macos": "pkg . -t node18-macos-x64 -o bundle/dcli-macos -C GZip --public --public-packages tslib,thirty-two --no-bytecode",
2828
"pkg:macos-arm": "pkg . -t node18-macos-arm64 -o bundle/dcli-macos-arm -C GZip --public --public-packages tslib,thirty-two --no-bytecode",
@@ -59,7 +59,7 @@
5959
"@typescript-eslint/eslint-plugin": "^7.8.0",
6060
"@typescript-eslint/parser": "^7.8.0",
6161
"@yao-pkg/pkg": "^5.11.5",
62-
"chai": "^4.4.1",
62+
"chai": "^5.1.1",
6363
"esbuild": "^0.21.2",
6464
"eslint": "^8.57.0",
6565
"eslint-config-prettier": "^9.1.0",
@@ -78,8 +78,8 @@
7878
"@node-rs/argon2": "^1.8.3",
7979
"better-sqlite3": "^10.0.0",
8080
"commander": "^12.0.0",
81-
"got": "^11.8.6",
82-
"inquirer": "^9.2.20",
81+
"got": "^14.2.1",
82+
"inquirer": "^9.2.21",
8383
"inquirer-search-list": "^1.2.6",
8484
"jsonpath-plus": "^9.0.0",
8585
"node-mac-auth": "^1.0.0",

scripts/build.js

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
#!/usr/bin/env node
22

3-
const os = require('os');
4-
const fs = require('fs');
5-
const path = require('path');
6-
const process = require('process');
7-
const childProcess = require('child_process');
8-
const esbuild = require('esbuild');
9-
const packageJSON = require('../package.json');
3+
import os from 'os';
4+
import fs from 'fs';
5+
import path, { format } from 'path';
6+
import process from 'process';
7+
import childProcess from 'child_process';
8+
import esbuild from 'esbuild';
9+
import packageJSON from '../package.json' assert { type: 'json' };
10+
import { fileURLToPath } from 'url';
1011

1112
const platform = os.platform();
13+
const __filename = fileURLToPath(import.meta.url);
14+
const __dirname = path.dirname(__filename);
1215

1316
/* eslint-disable no-console */
1417
async function main(argv = process.argv) {
@@ -63,14 +66,15 @@ async function main(argv = process.argv) {
6366
sourceRoot: buildPath,
6467
bundle: true,
6568
platform: 'node',
66-
outdir: distPath,
69+
format: 'cjs',
6770
external: externalDependencies,
6871
treeShaking: true,
6972
// External source map for debugging
7073
sourcemap: true,
7174
// Minify and keep the original names
7275
minify: true,
7376
keepNames: true,
77+
outfile: path.join(distPath, 'index.cjs')
7478
};
7579
console.error('Running esbuild:');
7680
console.error(esbuildOptions);

src/command-handlers/configure.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ export const configureUserPresenceVerification = async (options: {
7272

7373
if (method === 'biometrics') {
7474
if (process.platform === 'darwin') {
75-
const { canPromptTouchID } = await import('node-mac-auth');
76-
if (!canPromptTouchID()) {
75+
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-var-requires
76+
const nodemacauth = require('node-mac-auth') as typeof import('node-mac-auth');
77+
if (!nodemacauth.canPromptTouchID()) {
7778
throw new Error('Biometrics are not supported on your device.');
7879
}
7980
}

src/modules/auth/userPresenceVerification.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ export const userPresenceVerification = async (params: { deviceConfiguration: De
1313

1414
if (deviceConfiguration.userPresenceVerification === 'biometrics') {
1515
if (process.platform === 'darwin') {
16-
const { canPromptTouchID, promptTouchID } = await import('node-mac-auth');
16+
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-var-requires
17+
const nodemacauth = require('node-mac-auth') as typeof import('node-mac-auth');
18+
const { canPromptTouchID, promptTouchID } = nodemacauth;
1719
if (canPromptTouchID()) {
1820
return promptTouchID({
1921
reason: 'validate your identity before accessing your vault',

src/modules/crypto/decrypt.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import * as argon2 from '@node-rs/argon2';
22
import winston from 'winston';
33
import * as xmlJs from 'xml-js';
4-
import * as crypto from 'crypto';
4+
import crypto from 'crypto';
55
import { promisify } from 'util';
66
import zlib from 'zlib';
77
import { CipherData, EncryptedData } from './types';
8-
import { hmacSha256, sha512 } from './hash';
9-
import { deserializeEncryptedData } from './encryptedDataDeserialization';
8+
import { hmacSha256, sha512 } from './hash.js';
9+
import { deserializeEncryptedData } from './encryptedDataDeserialization.js';
1010
import { BackupEditTransaction, LocalConfiguration, SymmetricKeyGetter } from '../../types';
1111

1212
interface DecryptAesCbcHmac256Params {

src/modules/crypto/encrypt.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import * as crypto from 'crypto';
2-
import { serializeEncryptedData } from './encryptedDataSerialization';
3-
import { hmacSha256, sha512 } from './hash';
1+
import crypto from 'crypto';
2+
import { serializeEncryptedData } from './encryptedDataSerialization.js';
3+
import { hmacSha256, sha512 } from './hash.js';
44
import { EncryptedData } from './types';
55

66
export const encryptAesCbcHmac256 = (originalKey: Buffer, content: Buffer): string => {

src/modules/crypto/test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { assert } from 'chai';
2-
import * as crypto from 'crypto';
3-
import { decrypt } from './decrypt';
4-
import { encryptAesCbcHmac256 } from './encrypt';
5-
import { deserializeEncryptedData } from './encryptedDataDeserialization';
2+
import crypto from 'crypto';
3+
import { decrypt } from './decrypt.js';
4+
import { encryptAesCbcHmac256 } from './encrypt.js';
5+
import { deserializeEncryptedData } from './encryptedDataDeserialization.js';
66

77
describe('Encrypt and decrypt using random symmetric key', () => {
88
it('ciphering params parsed after encryption are correct', () => {

src/utils/strings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import commander from 'commander';
1+
import * as commander from 'commander';
22
import { Parser } from '@json2csv/plainjs';
33
import { flatten } from '@json2csv/transforms';
44

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
2525

2626
/* Modules */
27-
"module": "commonjs" /* Specify what module code is generated. */,
27+
"module": "ES2022" /* Specify what module code is generated. */,
2828
"rootDir": "src" /* Specify the root folder within your source files. */,
29-
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
29+
"moduleResolution": "Bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
3030
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
3131
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
3232
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */

0 commit comments

Comments
 (0)