mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
const path = require("path");
|
|
const packageJson = require(path.resolve(__dirname, "package.json"));
|
|
|
|
const VERSION = `${packageJson.version}`;
|
|
module.exports = VERSION;
|