add contributors to the about page

This commit is contained in:
MaysWind
2025-12-30 00:28:20 +08:00
parent 2ada077b38
commit 3313ccf051
7 changed files with 241 additions and 9 deletions
+2
View File
@@ -9,6 +9,7 @@ import Checker from 'vite-plugin-checker';
import git from 'git-rev-sync';
import packageFile from './package.json';
import contributorsFile from './contributors.json';
import thirdPartyLicenseFile from './third-party-dependencies.json';
const SRC_DIR = resolve(__dirname, './src');
@@ -75,6 +76,7 @@ export default defineConfig(() => {
__EZBOOKKEEPING_VERSION__: JSON.stringify(packageFile.version),
__EZBOOKKEEPING_BUILD_UNIX_TIME__: JSON.stringify(buildUnixTime),
__EZBOOKKEEPING_BUILD_COMMIT_HASH__: JSON.stringify(git.short()),
__EZBOOKKEEPING_CONTRIBUTORS__: JSON.stringify(contributorsFile),
__EZBOOKKEEPING_LICENSE__: JSON.stringify(licenseContent),
__EZBOOKKEEPING_THIRD_PARTY_LICENSES__: JSON.stringify(thirdPartyLicenseFile)
},