UNPKG

@adguard/agtree

Version:
19 lines (16 loc) 595 B
/* * AGTree v3.2.2 (build date: Tue, 08 Jul 2025 13:39:47 GMT) * (c) 2025 Adguard Software Ltd. * Released under the MIT license * https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/agtree#readme */ import { version } from './package.json.js'; /** * @file AGTree version */ // ! Notice: // Don't export version from package.json directly, because if you run // `tsc` in the root directory, it will generate `dist/types/src/version.d.ts` // with wrong relative path to `package.json`. So we need this little "hack" const AGTREE_VERSION = version; export { AGTREE_VERSION };