UNPKG

@eve-tools/cli

Version:

Everest cli to speed up project start-up and standardized frontend , backend architecture

6 lines (5 loc) 201 B
import { readFileSync } from "fs"; export const getEveCliVersion = () => { const pkg = readFileSync(new URL("../../package.json", import.meta.url), "utf-8"); return JSON.parse(pkg).version; };