mirror of
https://github.com/certd/certd.git
synced 2026-05-16 21:27:34 +08:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
|
|
import fs from 'fs';
|
||
|
|
|
||
|
|
export async function getVersion() {
|
||
|
|
const pkg = await fs.promises.readFile('../../../package.json');
|
||
|
|
const pkgJson = JSON.parse(pkg.toString());
|
||
|
|
return pkgJson.version;
|
||
|
|
}
|