mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
feat: start language detection for summary and desc
This commit is contained in:
@@ -12,9 +12,10 @@
|
||||
"intl:prune-local": "pnpm -w scripts i18n-icu-contract prune-local --scope packages/moderation"
|
||||
},
|
||||
"dependencies": {
|
||||
"@modrinth/api-client": "workspace:*",
|
||||
"@modrinth/assets": "workspace:*",
|
||||
"@modrinth/utils": "workspace:*",
|
||||
"@modrinth/api-client": "workspace:*",
|
||||
"franc-min": "^6.2.0",
|
||||
"linkify-it": "^5.0.0",
|
||||
"node-html-parser": "^9.0.1",
|
||||
"obscenity": "^0.4.6",
|
||||
|
||||
@@ -19,6 +19,7 @@ export * from './types/reports'
|
||||
export * from './types/settings'
|
||||
export * from './utils'
|
||||
export * from './validation-rules/index.ts'
|
||||
export * from './validators/language'
|
||||
export * from './validators/links'
|
||||
export * from './validators/non-standard-text'
|
||||
export * from './validators/profanity'
|
||||
|
||||
@@ -14,10 +14,12 @@ import {
|
||||
import { validateSpam } from '../../validators/spam/index.ts'
|
||||
import { evaluateRules } from '../evaluate-rules.ts'
|
||||
import {
|
||||
evaluateEnglishText,
|
||||
evaluateNonStandardText,
|
||||
evaluateProfanity,
|
||||
evaluateSlur,
|
||||
normalizeProjectFieldText,
|
||||
projectRequiresEnglishText,
|
||||
} from '../text.ts'
|
||||
import { toFieldMessages } from '../to-field-messages.ts'
|
||||
import { toNags } from '../to-nags.ts'
|
||||
@@ -64,6 +66,11 @@ const messages = defineMessages({
|
||||
id: 'nags.project-description-non-standard-text.description',
|
||||
defaultMessage: 'Non-standard text characters, such as “₮ɆӾ₮”, are not allowed.',
|
||||
},
|
||||
nonEnglish: {
|
||||
id: 'nags.project-description-non-english.description',
|
||||
defaultMessage:
|
||||
'Your project description must be written in English or include an English translation.',
|
||||
},
|
||||
bannedLink: {
|
||||
id: 'nags.project-description-banned-link.description',
|
||||
defaultMessage: '“{fullUrl}” is not allowed in project descriptions.',
|
||||
@@ -238,6 +245,21 @@ export const projectDescriptionValidationRules = {
|
||||
nag: { title: messages.fixDescription, ...commonNagPresentation },
|
||||
},
|
||||
},
|
||||
'project-description-non-english': {
|
||||
severity: 'warning',
|
||||
evaluate: (description) => {
|
||||
const text = extractDescriptionText(description ?? '')
|
||||
if (text.length < MIN_DESCRIPTION_CHARS || !validateSpam(text).valid) {
|
||||
return { valid: true }
|
||||
}
|
||||
|
||||
return evaluateEnglishText(text)
|
||||
},
|
||||
presentation: {
|
||||
message: messages.nonEnglish,
|
||||
nag: { title: messages.fixDescription, ...commonNagPresentation },
|
||||
},
|
||||
},
|
||||
'add-description': {
|
||||
severity: 'error',
|
||||
evaluate: (description) => ({
|
||||
@@ -323,5 +345,10 @@ export function validateProjectDescription(
|
||||
}
|
||||
|
||||
export function getDescriptionNags(context: Pick<ProjectValidationContext, 'projectV3'>): Nag[] {
|
||||
return toNags(evaluateRules(context.projectV3.description, projectDescriptionValidationRules))
|
||||
const matches = evaluateRules(context.projectV3.description, projectDescriptionValidationRules)
|
||||
return toNags(
|
||||
projectRequiresEnglishText(context.projectV3)
|
||||
? matches
|
||||
: matches.filter(({ code }) => code !== 'project-description-non-english'),
|
||||
)
|
||||
}
|
||||
|
||||
@@ -7,10 +7,12 @@ import type { Nag, ProjectValidationContext } from '../../types/nags.ts'
|
||||
import { validateSpam } from '../../validators/spam/index.ts'
|
||||
import { evaluateRules } from '../evaluate-rules.ts'
|
||||
import {
|
||||
evaluateEnglishSummaryText,
|
||||
evaluateNonStandardText,
|
||||
evaluateProfanity,
|
||||
evaluateSlur,
|
||||
normalizeProjectFieldText,
|
||||
projectRequiresEnglishText,
|
||||
} from '../text.ts'
|
||||
import { toFieldMessages } from '../to-field-messages.ts'
|
||||
import { toNags } from '../to-nags.ts'
|
||||
@@ -57,6 +59,11 @@ const messages = defineMessages({
|
||||
id: 'nags.project-summary-non-standard-text.description',
|
||||
defaultMessage: 'Non-standard text characters, such as “₮ɆӾ₮”, are not allowed.',
|
||||
},
|
||||
nonEnglish: {
|
||||
id: 'nags.project-summary-non-english.description',
|
||||
defaultMessage:
|
||||
'Your project summary must be written in English or include an English translation.',
|
||||
},
|
||||
matchesName: {
|
||||
id: 'project.text-validation.summary-matches-title',
|
||||
defaultMessage: "A project summary cannot be the same as it's title.",
|
||||
@@ -147,6 +154,25 @@ export const projectSummaryValidationRules = {
|
||||
nag: { title: messages.fixSummary, ...commonNagPresentation },
|
||||
},
|
||||
},
|
||||
'project-summary-non-english': {
|
||||
severity: 'warning',
|
||||
evaluate: ({ summary }) => {
|
||||
const normalized = normalizeProjectFieldText(summary ?? '')
|
||||
if (
|
||||
!normalized ||
|
||||
normalized.length < MIN_SUMMARY_CHARS ||
|
||||
containsProjectSummaryLinkOrIp(normalized) ||
|
||||
!validateSpam(normalized).valid
|
||||
) {
|
||||
return { valid: true }
|
||||
}
|
||||
return evaluateEnglishSummaryText(normalized)
|
||||
},
|
||||
presentation: {
|
||||
message: messages.nonEnglish,
|
||||
nag: { title: messages.fixSummary, ...commonNagPresentation },
|
||||
},
|
||||
},
|
||||
'project-summary-matches-title': {
|
||||
severity: 'error',
|
||||
evaluate: ({ summary, name }) => ({
|
||||
@@ -214,10 +240,13 @@ export function validateProjectSummary(
|
||||
}
|
||||
|
||||
export function getSummaryNags(context: Pick<ProjectValidationContext, 'projectV3'>): Nag[] {
|
||||
const matches = evaluateRules(
|
||||
{ summary: context.projectV3.summary, name: context.projectV3.name },
|
||||
projectSummaryValidationRules,
|
||||
)
|
||||
return toNags(
|
||||
evaluateRules(
|
||||
{ summary: context.projectV3.summary, name: context.projectV3.name },
|
||||
projectSummaryValidationRules,
|
||||
),
|
||||
projectRequiresEnglishText(context.projectV3)
|
||||
? matches
|
||||
: matches.filter(({ code }) => code !== 'project-summary-non-english'),
|
||||
)
|
||||
}
|
||||
|
||||
@@ -135,6 +135,17 @@ test('validates summary content from one rule set', () => {
|
||||
)
|
||||
})
|
||||
|
||||
test('warns when a project summary is mostly non-English', () => {
|
||||
assert.deepEqual(
|
||||
validateProjectSummary({
|
||||
summary:
|
||||
'これは新しい洞窟と構造物を追加し、すべてのプレイヤーの世界生成を改善するプロジェクトです。',
|
||||
name: 'Project title',
|
||||
}).map(({ code, severity }) => ({ code, severity })),
|
||||
[{ code: 'project-summary-non-english', severity: 'warning' }],
|
||||
)
|
||||
})
|
||||
|
||||
test('rejects repeated summary padding', () => {
|
||||
assert.deepEqual(
|
||||
validateProjectSummary({
|
||||
@@ -224,6 +235,22 @@ test('validates description requirements and simultaneous recommendations', () =
|
||||
)
|
||||
})
|
||||
|
||||
test('warns when a project description is mostly non-English', () => {
|
||||
const description = [
|
||||
'このプロジェクトは設定可能な洞窟と新しい構造物を世界生成に追加します。',
|
||||
'プレイヤーは設定ファイルを使って、それぞれの機能を個別に変更できます。',
|
||||
'探索をより楽しくする便利な道具や新しい報酬もたくさん含まれています。',
|
||||
'サーバーとクライアントの両方で快適に動作するように設計されています。',
|
||||
].join(' ')
|
||||
|
||||
assert.deepEqual(
|
||||
validateProjectDescription(description)
|
||||
.filter(({ code }) => code === 'project-description-non-english')
|
||||
.map(({ code, severity }) => ({ code, severity })),
|
||||
[{ code: 'project-description-non-english', severity: 'warning' }],
|
||||
)
|
||||
})
|
||||
|
||||
test('allows short headers regardless of punctuation', () => {
|
||||
assert.deepEqual(analyzeHeaderLength('# Version 1.2 is available'), {
|
||||
hasLongHeaders: false,
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import type { ProjectValidationContext } from '../types/nags.ts'
|
||||
import { validateEnglishSummaryText, validateEnglishText } from '../validators/language/index.ts'
|
||||
import {
|
||||
getNonStandardTextRatio,
|
||||
validateNonStandardText,
|
||||
@@ -9,6 +11,17 @@ export function normalizeProjectFieldText(value: string) {
|
||||
return value.trim().normalize('NFC')
|
||||
}
|
||||
|
||||
export function projectRequiresEnglishText(
|
||||
project: Pick<
|
||||
ProjectValidationContext['projectV3'],
|
||||
'minecraft_java_server' | 'minecraft_server'
|
||||
>,
|
||||
) {
|
||||
return (
|
||||
!project.minecraft_java_server || project.minecraft_server?.languages?.includes('en') === true
|
||||
)
|
||||
}
|
||||
|
||||
export function evaluateSlur(text: string): ValidationRuleEvaluation {
|
||||
const match = validateProfanity(text).matches.find((match) => match.kind === 'slur')
|
||||
return match ? { valid: false, values: { value: match.rawText } } : { valid: true }
|
||||
@@ -34,3 +47,13 @@ export function evaluateNonStandardText(
|
||||
valid: result.valid || getNonStandardTextRatio(text, result) < failureThreshold,
|
||||
}
|
||||
}
|
||||
|
||||
export function evaluateEnglishText(text: string): ValidationRuleEvaluation {
|
||||
const result = validateEnglishText(text)
|
||||
return { valid: result.valid }
|
||||
}
|
||||
|
||||
export function evaluateEnglishSummaryText(text: string): ValidationRuleEvaluation {
|
||||
const result = validateEnglishSummaryText(text)
|
||||
return { valid: result.valid }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
import { francAll } from 'franc-min'
|
||||
|
||||
export interface LanguageDetection {
|
||||
language: string
|
||||
accuracy: number
|
||||
}
|
||||
|
||||
export interface EnglishTextResult {
|
||||
valid: boolean
|
||||
detections: LanguageDetection[]
|
||||
}
|
||||
|
||||
export const MIN_LANGUAGE_DETECTION_WORDS = 8
|
||||
export const MIN_LANGUAGE_DETECTION_CHARACTERS = 35
|
||||
export const MIN_ENGLISH_SCORE = 0.45
|
||||
|
||||
const wordSegmenter = new Intl.Segmenter(undefined, { granularity: 'word' })
|
||||
const characterSegmenter = new Intl.Segmenter(undefined, { granularity: 'grapheme' })
|
||||
|
||||
function hasEnoughCharacters(text: string): boolean {
|
||||
let characterCount = 0
|
||||
|
||||
for (const _ of characterSegmenter.segment(text.trim())) {
|
||||
if (++characterCount >= MIN_LANGUAGE_DETECTION_CHARACTERS) return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
function hasEnoughWords(text: string): boolean {
|
||||
let wordCount = 0
|
||||
|
||||
for (const { isWordLike } of wordSegmenter.segment(text)) {
|
||||
if (isWordLike && ++wordCount >= MIN_LANGUAGE_DETECTION_WORDS) return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
export function validateEnglishText(text: string): EnglishTextResult {
|
||||
if (!hasEnoughCharacters(text) || !hasEnoughWords(text)) {
|
||||
return { valid: true, detections: [] }
|
||||
}
|
||||
|
||||
const results = francAll(text)
|
||||
const englishScore = results.find(([language]) => language === 'eng')?.[1] ?? 0
|
||||
const detections = results.map(([language, accuracy]) => ({ language, accuracy }))
|
||||
|
||||
return {
|
||||
valid: englishScore > MIN_ENGLISH_SCORE,
|
||||
detections,
|
||||
}
|
||||
}
|
||||
|
||||
export const validateEnglishSummaryText = validateEnglishText
|
||||
@@ -0,0 +1,134 @@
|
||||
import assert from 'node:assert/strict'
|
||||
import test from 'node:test'
|
||||
|
||||
import { francAll } from 'franc-min'
|
||||
|
||||
import {
|
||||
MIN_ENGLISH_SCORE,
|
||||
MIN_LANGUAGE_DETECTION_CHARACTERS,
|
||||
MIN_LANGUAGE_DETECTION_WORDS,
|
||||
validateEnglishSummaryText,
|
||||
validateEnglishText,
|
||||
} from './index.ts'
|
||||
|
||||
test('accepts text when franc scores English above the minimum score', () => {
|
||||
const text =
|
||||
'This project adds configurable caves, useful tools, and polished world generation for every player.'
|
||||
const result = validateEnglishText(text)
|
||||
const english = result.detections.find(({ language }) => language === 'eng')
|
||||
const alternative = result.detections.find(({ language }) => language !== 'eng')
|
||||
|
||||
assert.equal(result.valid, true)
|
||||
assert.ok(english)
|
||||
assert.ok(alternative)
|
||||
assert.ok(english.accuracy > MIN_ENGLISH_SCORE)
|
||||
assert.deepEqual(
|
||||
result.detections,
|
||||
francAll(text).map(([language, accuracy]) => ({ language, accuracy })),
|
||||
)
|
||||
})
|
||||
|
||||
test('accepts mixed English and Chinese text above the minimum score', () => {
|
||||
const result = validateEnglishText(
|
||||
'A super light QQ bot for minecraft server and QQ group exchange msgs | 超轻量的QQ-MC群服插件',
|
||||
)
|
||||
|
||||
assert.equal(result.valid, true)
|
||||
})
|
||||
|
||||
test('rejects text when franc scores English below the minimum score', () => {
|
||||
for (const text of [
|
||||
'Чистый модпак для комфортной игры с друзьями, новыми заданиями и значительно улучшенной производительностью.',
|
||||
'これは新しい洞窟と構造物を追加し、すべてのプレイヤーの世界生成を改善するプロジェクトです。',
|
||||
]) {
|
||||
assert.equal(validateEnglishText(text).valid, false, text)
|
||||
}
|
||||
})
|
||||
|
||||
test('validates production project text using the English score threshold', () => {
|
||||
const cases = [
|
||||
{
|
||||
text: 'This mod adds some new things about turtles to Minecraft这个模组为Minecraft增加了一些关于乌龟的新东西',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: 'Tenhle Project má super mody ktere zlepší kvalitu hraní PVP',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: '此插件修复了Authme在lophine服务端上的登录漏洞 修复了玩家退出时SQL数据库的Logged依然为1的问题',
|
||||
valid: false,
|
||||
},
|
||||
{
|
||||
text: 'Мод добавляет рубин — новый драгоценный камень. Добывайте рубиновую руду, кристаллизующуюся в толще камня, а закалив четыре рубина четырьмя незеритовыми ломами - можно будет сделать меч, кирку, броню и крюк захвата',
|
||||
valid: false,
|
||||
},
|
||||
{
|
||||
text: 'Um modpack Fabric focado em desempenho, imersão e exploração, mantendo a experiência próxima ao Minecraft Vanilla. O objetivo é melhorar o visual, os sons, a geração de mundo e a qualidade de vida do jogo sem adicionar sistemas complexos.',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: 'A Create Tacz Warfare Modpack for the Server Create: Warfare',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: '一个集成了全息字和占位符创建的插件 A Plugin Integrating Holograms and Placeholder Support',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: "A modpack that adds stuff from TaCZ guns, to shaders, to curios slots, and even create! And also, Superb Warfare, in case TaCZ isn't for you!",
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: 'Leichtes Client-Modpack für entspannte Feierabend-Sessions, bessere Performance, praktische QoL-Mods und ein aufgeräumtes Spielgefühl ohne unnötigen Ballast.',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: 'A super light QQ bot for minecraft server and QQ group exchange msgs | 超轻量的QQ-MC群服插件',
|
||||
valid: true,
|
||||
},
|
||||
{
|
||||
text: 'Integrates MCP into minecraft, made for mapmakers and complex command block logic and datapack making.',
|
||||
valid: true,
|
||||
},
|
||||
]
|
||||
|
||||
for (const { text, valid } of cases) {
|
||||
assert.equal(validateEnglishText(text).valid, valid, text)
|
||||
}
|
||||
})
|
||||
|
||||
test('skips language detection for production text below the word minimum', () => {
|
||||
for (const text of [
|
||||
'You can chat Gemini AI in Minecraft',
|
||||
'Create Mods X Zombie Apolcalypse',
|
||||
'Open-world zombie survival modpack',
|
||||
"BIG-GOOSE Minecraft server's modpack",
|
||||
]) {
|
||||
assert.deepEqual(validateEnglishText(text), { valid: true, detections: [] }, text)
|
||||
}
|
||||
})
|
||||
|
||||
test('skips language detection for text below the character minimum', () => {
|
||||
const result = validateEnglishText('one two three four a b c d')
|
||||
|
||||
assert.deepEqual(result, { valid: true, detections: [] })
|
||||
assert.equal(MIN_LANGUAGE_DETECTION_CHARACTERS, 35)
|
||||
})
|
||||
|
||||
test('validates production text meeting both signal minimums', () => {
|
||||
const text = '𝗔𝗶𝗺𝗶𝗻𝗴 𝘁𝗼 𝗲𝗻𝗵𝗮𝗻𝗰𝗲 𝗠𝗶𝗻𝗲𝗰𝗿𝗮𝗳𝘁 𝘄𝗵𝗶𝗹𝗲 𝗿𝗲𝘁𝗮𝗶𝗻𝗶𝗻𝗴 𝘁𝗵𝗮𝘁 𝗩𝗮𝗻𝗶𝗹𝗹𝗮 𝗳𝗲𝗲𝗹!'
|
||||
const result = validateEnglishText(text)
|
||||
|
||||
assert.equal(result.valid, false)
|
||||
assert.ok(result.detections.length > 0)
|
||||
assert.equal(MIN_LANGUAGE_DETECTION_WORDS, 8)
|
||||
})
|
||||
|
||||
test('uses the same validation for summaries', () => {
|
||||
assert.equal(validateEnglishSummaryText, validateEnglishText)
|
||||
})
|
||||
|
||||
test('allows empty text to be handled by required-field validation', () => {
|
||||
assert.deepEqual(validateEnglishText(' '), { valid: true, detections: [] })
|
||||
})
|
||||
Generated
+37
-231
@@ -179,7 +179,7 @@ importers:
|
||||
devDependencies:
|
||||
'@eslint/compat':
|
||||
specifier: ^1.1.1
|
||||
version: 1.4.1(eslint@9.39.2(jiti@1.21.7))
|
||||
version: 1.4.1(eslint@9.39.2(jiti@2.6.1))
|
||||
'@formatjs/cli':
|
||||
specifier: ^6.2.12
|
||||
version: 6.12.2(@vue/compiler-core@3.5.27)(vue@3.5.27(typescript@5.9.3))
|
||||
@@ -188,22 +188,22 @@ importers:
|
||||
version: link:../../packages/tooling-config
|
||||
'@nuxt/eslint-config':
|
||||
specifier: ^0.5.6
|
||||
version: 0.5.7(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
version: 0.5.7(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
||||
'@taijased/vue-render-tracker':
|
||||
specifier: ^1.0.7
|
||||
version: 1.0.7(vue@3.5.27(typescript@5.9.3))
|
||||
'@vitejs/plugin-vue':
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.4(vite@8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@1.21.7)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))
|
||||
version: 6.0.4(vite@8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))
|
||||
autoprefixer:
|
||||
specifier: ^10.4.19
|
||||
version: 10.4.24(postcss@8.5.6)
|
||||
eslint:
|
||||
specifier: ^9.9.1
|
||||
version: 9.39.2(jiti@1.21.7)
|
||||
version: 9.39.2(jiti@2.6.1)
|
||||
eslint-plugin-turbo:
|
||||
specifier: ^2.5.4
|
||||
version: 2.8.2(eslint@9.39.2(jiti@1.21.7))(turbo@2.8.2)
|
||||
version: 2.8.2(eslint@9.39.2(jiti@2.6.1))(turbo@2.8.2)
|
||||
postcss:
|
||||
specifier: ^8.4.39
|
||||
version: 8.5.6
|
||||
@@ -221,7 +221,7 @@ importers:
|
||||
version: 5.9.3
|
||||
vite:
|
||||
specifier: ^8.0.0
|
||||
version: 8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@1.21.7)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
|
||||
version: 8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
|
||||
vue-component-type-helpers:
|
||||
specifier: ^3.1.8
|
||||
version: 3.2.4
|
||||
@@ -557,6 +557,9 @@ importers:
|
||||
'@modrinth/utils':
|
||||
specifier: workspace:*
|
||||
version: link:../utils
|
||||
franc-min:
|
||||
specifier: ^6.2.0
|
||||
version: 6.2.0
|
||||
linkify-it:
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
@@ -817,7 +820,7 @@ importers:
|
||||
version: 5.2.4(vite@5.4.21(@types/node@24.12.2)(lightningcss@1.32.0)(sass@1.97.3)(terser@5.46.0))(vue@3.5.27(typescript@5.9.3))
|
||||
eslint-plugin-storybook:
|
||||
specifier: ^10.1.10
|
||||
version: 10.2.4(eslint@9.39.2(jiti@2.6.1))(storybook@10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(typescript@5.9.3)
|
||||
version: 10.2.4(eslint@9.39.2(jiti@1.21.7))(storybook@10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(typescript@5.9.3)
|
||||
storybook:
|
||||
specifier: ^10.1.10
|
||||
version: 10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
||||
@@ -6634,6 +6637,9 @@ packages:
|
||||
react-dom:
|
||||
optional: true
|
||||
|
||||
franc-min@6.2.0:
|
||||
resolution: {integrity: sha512-1uDIEUSlUZgvJa2AKYR/dmJC66v/PvGQ9mWfI9nOr/kPpMFyvswK0gPXOwpYJYiYD008PpHLkGfG58SPjQJFxw==}
|
||||
|
||||
fresh@2.0.0:
|
||||
resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
|
||||
engines: {node: '>= 0.8'}
|
||||
@@ -7883,6 +7889,9 @@ packages:
|
||||
mz@2.7.0:
|
||||
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
||||
|
||||
n-gram@2.0.2:
|
||||
resolution: {integrity: sha512-S24aGsn+HLBxUGVAUFOwGpKs7LBcG4RudKU//eWzt/mQ97/NMKQxDWHyHx63UNWk/OOdihgmzoETn1tf5nQDzQ==}
|
||||
|
||||
nanoid@3.3.11:
|
||||
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||
@@ -9494,6 +9503,9 @@ packages:
|
||||
tr46@0.0.3:
|
||||
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
||||
|
||||
trigram-utils@2.0.1:
|
||||
resolution: {integrity: sha512-nfWIXHEaB+HdyslAfMxSqWKDdmqY9I32jS7GnqpdWQnLH89r6A5sdk3fDVYqGAZ0CrT8ovAFSAo6HRiWcWNIGQ==}
|
||||
|
||||
trim-lines@3.0.1:
|
||||
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
|
||||
|
||||
@@ -10225,8 +10237,8 @@ packages:
|
||||
vue-component-type-helpers@3.2.4:
|
||||
resolution: {integrity: sha512-05lR16HeZDcDpB23ku5b5f1fBOoHqFnMiKRr2CiEvbG5Ux4Yi0McmQBOET0dR0nxDXosxyVqv67q6CzS3AK8rw==}
|
||||
|
||||
vue-component-type-helpers@3.3.9:
|
||||
resolution: {integrity: sha512-3c/UfMe0SqyEfcGTyH7mfshHagJ9QTCbppCb0/uGpHZpFug7+If3GeGZN7I0YheKEExemx3xldQPoO7PQSOLQg==}
|
||||
vue-component-type-helpers@3.3.11:
|
||||
resolution: {integrity: sha512-LwcxzeliO9fkQcpJG0PoX8X5kmAhKmH9wkpDLxNabwzkQ9Zeib2YVHwFV4pcWmMLfXVfjr/dSV+DaJ3cIPgSNA==}
|
||||
|
||||
vue-confetti-explosion@1.0.2:
|
||||
resolution: {integrity: sha512-80OboM3/6BItIoZ6DpNcZFqGpF607kjIVc5af56oKgtFmt5yWehvJeoYhkzYlqxrqdBe0Ko4Ie3bWrmLau+dJw==}
|
||||
@@ -11589,12 +11601,6 @@ snapshots:
|
||||
|
||||
'@eslint-community/regexpp@4.12.2': {}
|
||||
|
||||
'@eslint/compat@1.4.1(eslint@9.39.2(jiti@1.21.7))':
|
||||
dependencies:
|
||||
'@eslint/core': 0.17.0
|
||||
optionalDependencies:
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
|
||||
'@eslint/compat@1.4.1(eslint@9.39.2(jiti@2.6.1))':
|
||||
dependencies:
|
||||
'@eslint/core': 0.17.0
|
||||
@@ -12363,31 +12369,6 @@ snapshots:
|
||||
- utf-8-validate
|
||||
- vue
|
||||
|
||||
'@nuxt/eslint-config@0.5.7(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@eslint/js': 9.39.2
|
||||
'@nuxt/eslint-plugin': 0.5.7(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
'@stylistic/eslint-plugin': 2.13.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
'@typescript-eslint/eslint-plugin': 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
eslint-config-flat-gitignore: 0.3.0(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint-flat-config-utils: 0.4.0
|
||||
eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint-plugin-jsdoc: 50.8.0(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint-plugin-regexp: 2.10.0(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint-plugin-unicorn: 55.0.0(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint-plugin-vue: 9.33.0(eslint@9.39.2(jiti@1.21.7))
|
||||
globals: 15.15.0
|
||||
local-pkg: 0.5.1
|
||||
pathe: 1.1.2
|
||||
vue-eslint-parser: 9.4.3(eslint@9.39.2(jiti@1.21.7))
|
||||
transitivePeerDependencies:
|
||||
- '@typescript-eslint/utils'
|
||||
- eslint-import-resolver-node
|
||||
- supports-color
|
||||
- typescript
|
||||
|
||||
'@nuxt/eslint-config@0.5.7(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@eslint/js': 9.39.2
|
||||
@@ -12413,15 +12394,6 @@ snapshots:
|
||||
- supports-color
|
||||
- typescript
|
||||
|
||||
'@nuxt/eslint-plugin@0.5.7(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
|
||||
'@nuxt/eslint-plugin@0.5.7(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
@@ -13910,22 +13882,10 @@ snapshots:
|
||||
storybook: 10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
||||
type-fest: 2.19.0
|
||||
vue: 3.5.27(typescript@5.9.3)
|
||||
vue-component-type-helpers: 3.3.9
|
||||
vue-component-type-helpers: 3.3.11
|
||||
|
||||
'@stripe/stripe-js@7.9.0': {}
|
||||
|
||||
'@stylistic/eslint-plugin@2.13.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
eslint-visitor-keys: 4.2.1
|
||||
espree: 10.4.0
|
||||
estraverse: 5.3.0
|
||||
picomatch: 4.0.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
|
||||
'@stylistic/eslint-plugin@2.13.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
||||
@@ -14340,22 +14300,6 @@ snapshots:
|
||||
dependencies:
|
||||
'@types/node': 24.12.2
|
||||
|
||||
'@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@eslint-community/regexpp': 4.12.2
|
||||
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
'@typescript-eslint/scope-manager': 8.54.0
|
||||
'@typescript-eslint/type-utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
'@typescript-eslint/visitor-keys': 8.54.0
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
ignore: 7.0.5
|
||||
natural-compare: 1.4.0
|
||||
ts-api-utils: 2.4.0(typescript@5.9.3)
|
||||
typescript: 5.9.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@eslint-community/regexpp': 4.12.2
|
||||
@@ -14372,18 +14316,6 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/scope-manager': 8.54.0
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
'@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
|
||||
'@typescript-eslint/visitor-keys': 8.54.0
|
||||
debug: 4.4.3
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
typescript: 5.9.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/scope-manager': 8.54.0
|
||||
@@ -14427,18 +14359,6 @@ snapshots:
|
||||
dependencies:
|
||||
typescript: 5.9.3
|
||||
|
||||
'@typescript-eslint/type-utils@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
'@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
debug: 4.4.3
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
ts-api-utils: 2.4.0(typescript@5.9.3)
|
||||
typescript: 5.9.3
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@typescript-eslint/type-utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
@@ -14631,12 +14551,6 @@ snapshots:
|
||||
vite: 7.3.1(@types/node@24.12.2)(jiti@2.6.1)(lightningcss@1.32.0)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
|
||||
vue: 3.5.27(typescript@5.9.3)
|
||||
|
||||
'@vitejs/plugin-vue@6.0.4(vite@8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@1.21.7)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))':
|
||||
dependencies:
|
||||
'@rolldown/pluginutils': 1.0.0-rc.2
|
||||
vite: 8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@1.21.7)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
|
||||
vue: 3.5.27(typescript@5.9.3)
|
||||
|
||||
'@vitejs/plugin-vue@6.0.4(vite@8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))':
|
||||
dependencies:
|
||||
'@rolldown/pluginutils': 1.0.0-rc.2
|
||||
@@ -16213,12 +16127,6 @@ snapshots:
|
||||
|
||||
escape-string-regexp@5.0.0: {}
|
||||
|
||||
eslint-config-flat-gitignore@0.3.0(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
'@eslint/compat': 1.4.1(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
find-up-simple: 1.0.1
|
||||
|
||||
eslint-config-flat-gitignore@0.3.0(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
'@eslint/compat': 1.4.1(eslint@9.39.2(jiti@2.6.1))
|
||||
@@ -16240,23 +16148,6 @@ snapshots:
|
||||
optionalDependencies:
|
||||
unrs-resolver: 1.11.1
|
||||
|
||||
eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
comment-parser: 1.4.5
|
||||
debug: 4.4.3
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
|
||||
is-glob: 4.0.3
|
||||
minimatch: 10.1.2
|
||||
semver: 7.7.4
|
||||
stable-hash-x: 0.2.0
|
||||
unrs-resolver: 1.11.1
|
||||
optionalDependencies:
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 8.54.0
|
||||
@@ -16274,22 +16165,6 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
eslint-plugin-jsdoc@50.8.0(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
'@es-joy/jsdoccomment': 0.50.2
|
||||
are-docs-informative: 0.0.2
|
||||
comment-parser: 1.4.1
|
||||
debug: 4.4.3
|
||||
escape-string-regexp: 4.0.0
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
espree: 10.4.0
|
||||
esquery: 1.7.0
|
||||
parse-imports-exports: 0.2.4
|
||||
semver: 7.7.4
|
||||
spdx-expression-parse: 4.0.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
eslint-plugin-jsdoc@50.8.0(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
'@es-joy/jsdoccomment': 0.50.2
|
||||
@@ -16315,17 +16190,6 @@ snapshots:
|
||||
optionalDependencies:
|
||||
eslint-config-prettier: 10.1.8(eslint@9.39.2(jiti@2.6.1))
|
||||
|
||||
eslint-plugin-regexp@2.10.0(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
||||
'@eslint-community/regexpp': 4.12.2
|
||||
comment-parser: 1.4.5
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
jsdoc-type-pratt-parser: 4.8.0
|
||||
refa: 0.12.1
|
||||
regexp-ast-analysis: 0.7.1
|
||||
scslre: 0.3.0
|
||||
|
||||
eslint-plugin-regexp@2.10.0(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
|
||||
@@ -16341,47 +16205,21 @@ snapshots:
|
||||
dependencies:
|
||||
eslint: 9.39.2(jiti@2.6.1)
|
||||
|
||||
eslint-plugin-storybook@10.2.4(eslint@9.39.2(jiti@2.6.1))(storybook@10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(typescript@5.9.3):
|
||||
eslint-plugin-storybook@10.2.4(eslint@9.39.2(jiti@1.21.7))(storybook@10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(typescript@5.9.3):
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
||||
eslint: 9.39.2(jiti@2.6.1)
|
||||
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
storybook: 10.2.4(@testing-library/dom@10.4.1)(prettier@3.8.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
|
||||
eslint-plugin-turbo@2.8.2(eslint@9.39.2(jiti@1.21.7))(turbo@2.8.2):
|
||||
dependencies:
|
||||
dotenv: 16.0.3
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
turbo: 2.8.2
|
||||
|
||||
eslint-plugin-turbo@2.8.2(eslint@9.39.2(jiti@2.6.1))(turbo@2.8.2):
|
||||
dependencies:
|
||||
dotenv: 16.0.3
|
||||
eslint: 9.39.2(jiti@2.6.1)
|
||||
turbo: 2.8.2
|
||||
|
||||
eslint-plugin-unicorn@55.0.0(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
'@babel/helper-validator-identifier': 7.28.5
|
||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
||||
ci-info: 4.4.0
|
||||
clean-regexp: 1.0.0
|
||||
core-js-compat: 3.48.0
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
esquery: 1.7.0
|
||||
globals: 15.15.0
|
||||
indent-string: 4.0.0
|
||||
is-builtin-module: 3.2.1
|
||||
jsesc: 3.1.0
|
||||
pluralize: 8.0.0
|
||||
read-pkg-up: 7.0.1
|
||||
regexp-tree: 0.1.27
|
||||
regjsparser: 0.10.0
|
||||
semver: 7.7.4
|
||||
strip-indent: 3.0.0
|
||||
|
||||
eslint-plugin-unicorn@55.0.0(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
'@babel/helper-validator-identifier': 7.28.5
|
||||
@@ -16416,20 +16254,6 @@ snapshots:
|
||||
'@stylistic/eslint-plugin': 2.13.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
||||
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
||||
|
||||
eslint-plugin-vue@9.33.0(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
globals: 13.24.0
|
||||
natural-compare: 1.4.0
|
||||
nth-check: 2.1.1
|
||||
postcss-selector-parser: 6.1.2
|
||||
semver: 7.7.4
|
||||
vue-eslint-parser: 9.4.3(eslint@9.39.2(jiti@1.21.7))
|
||||
xml-name-validator: 4.0.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
eslint-plugin-vue@9.33.0(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
|
||||
@@ -16780,6 +16604,10 @@ snapshots:
|
||||
react: 19.2.8
|
||||
react-dom: 19.2.8(react@19.2.8)
|
||||
|
||||
franc-min@6.2.0:
|
||||
dependencies:
|
||||
trigram-utils: 2.0.1
|
||||
|
||||
fresh@2.0.0: {}
|
||||
|
||||
fs-extra@11.3.6:
|
||||
@@ -18384,6 +18212,8 @@ snapshots:
|
||||
object-assign: 4.1.1
|
||||
thenify-all: 1.6.0
|
||||
|
||||
n-gram@2.0.2: {}
|
||||
|
||||
nanoid@3.3.11: {}
|
||||
|
||||
nanoid@5.1.6: {}
|
||||
@@ -20446,6 +20276,11 @@ snapshots:
|
||||
|
||||
tr46@0.0.3: {}
|
||||
|
||||
trigram-utils@2.0.1:
|
||||
dependencies:
|
||||
collapse-white-space: 2.1.0
|
||||
n-gram: 2.0.2
|
||||
|
||||
trim-lines@3.0.1: {}
|
||||
|
||||
trough@2.2.0: {}
|
||||
@@ -20966,22 +20801,6 @@ snapshots:
|
||||
yaml: 2.8.2
|
||||
optional: true
|
||||
|
||||
vite@8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@1.21.7)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
|
||||
dependencies:
|
||||
lightningcss: 1.32.0
|
||||
picomatch: 4.0.4
|
||||
postcss: 8.5.8
|
||||
rolldown: 1.0.0-rc.12
|
||||
tinyglobby: 0.2.15
|
||||
optionalDependencies:
|
||||
'@types/node': 24.12.2
|
||||
esbuild: 0.27.3
|
||||
fsevents: 2.3.3
|
||||
jiti: 1.21.7
|
||||
sass: 1.97.3
|
||||
terser: 5.46.0
|
||||
yaml: 2.8.2
|
||||
|
||||
vite@8.0.3(@types/node@24.12.2)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
|
||||
dependencies:
|
||||
lightningcss: 1.32.0
|
||||
@@ -21118,7 +20937,7 @@ snapshots:
|
||||
|
||||
vue-component-type-helpers@3.2.4: {}
|
||||
|
||||
vue-component-type-helpers@3.3.9: {}
|
||||
vue-component-type-helpers@3.3.11: {}
|
||||
|
||||
vue-confetti-explosion@1.0.2(vue@3.5.27(typescript@5.9.3)):
|
||||
dependencies:
|
||||
@@ -21158,19 +20977,6 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
vue-eslint-parser@9.4.3(eslint@9.39.2(jiti@1.21.7)):
|
||||
dependencies:
|
||||
debug: 4.4.3
|
||||
eslint: 9.39.2(jiti@1.21.7)
|
||||
eslint-scope: 7.2.2
|
||||
eslint-visitor-keys: 3.4.3
|
||||
espree: 9.6.1
|
||||
esquery: 1.7.0
|
||||
lodash: 4.17.23
|
||||
semver: 7.7.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
vue-eslint-parser@9.4.3(eslint@9.39.2(jiti@2.6.1)):
|
||||
dependencies:
|
||||
debug: 4.4.3
|
||||
|
||||
Reference in New Issue
Block a user