mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-17 07:18:24 +08:00
7 lines
214 B
TypeScript
7 lines
214 B
TypeScript
import fs from 'node:fs/promises';
|
|
import type PkgT from '../package.json';
|
|
const pkg: typeof PkgT = JSON.parse(
|
|
await fs.readFile(process.cwd() + '/package.json', 'utf-8'),
|
|
);
|
|
process.stdout.write(pkg.version);
|