mirror of
https://github.com/wavetermdev/waveterm
synced 2026-04-21 22:47:16 +00:00
5 lines
169 B
JavaScript
5 lines
169 B
JavaScript
const path = require("path");
|
|
const packageJson = require(path.resolve(__dirname, "package.json"));
|
|
|
|
const VERSION = `${packageJson.version}`;
|
|
module.exports = VERSION;
|