mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-02 08:13:37 +01:00
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { readFileSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
import type { PackageJsonType } from '../types/packageJson.d.ts';
|
|
|
|
const PACKAGE_JSON_PATH = join(__dirname, '..', '..', 'package.json');
|
|
|
|
export const packageJson: PackageJsonType = JSON.parse(
|
|
readFileSync(PACKAGE_JSON_PATH, 'utf8')
|
|
);
|