forked from
npmx.dev/npmx.dev
[READ-ONLY]
a fast, modern browser for the npm registry
1import { defineConfig } from '@lunariajs/core/config'
2import { locales, sourceLocale } from './lunaria/prepare-json-files.ts'
3
4export default defineConfig({
5 repository: {
6 name: 'npmx-dev/npmx.dev',
7 },
8 sourceLocale,
9 locales,
10 files: [
11 {
12 include: ['lunaria/files/en-US.json'],
13 pattern: 'lunaria/files/@lang.json',
14 type: 'dictionary',
15 },
16 ],
17 tracking: {
18 ignoredKeywords: [
19 'lunaria-ignore',
20 'typo',
21 'en-only',
22 'broken link',
23 'i18nReady',
24 'i18nIgnore',
25 ],
26 },
27})