UNPKG

@adguard/agtree

Version:
19 lines (16 loc) 596 B
/* * AGTree v4.1.1 (build date: Thu, 23 Apr 2026 09:15:37 GMT) * (c) 2026 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 };