You've already forked AstralRinth
* feat: set up typed nag (validators) system * feat: start on frontend impl * fix: shouldShow issues * feat: continue work * feat: re add submitting/re-submit nags * feat: start work implementing validation checks using new nag system * fix: links page + add more validations * feat: tags validations * fix: lint issues * fix: lint * fix: issues * feat: start on i18nifying nags * feat: impl intl * fix: minecraft title clause update * fix: locale issues * refactor: inline i18n * fix: summary char min * fix: issues * Rephrase a few core nags * Modify character limit numbers * Remove redundant sentanceEnders check to reduce false positive. * Description nag rephrasing and tweaks * Tweak links nags adding project type checking for source publication check, make description nag tonally consistent. * fix: description nag * bump source publication nag to warn until additional files can be checked. * refactor link checking helper functions, prevent misuse of dsc links, prevent link shortener usage, check if source required licensed projects have additional files, bump this check back to required. * Correct plugin project type checking * fix: lint issues * update links.ts * feat: key + sort nags by type * Tweak core and description nag titles, change image accessability nag logic. * feat: update readme * updates to tags checking and rest of the nag titles * fix locale * fix: formatjs * fix tags warning, and link shorteners and misused discord warnings to link settings page, reword some warnings. * correct vocabulary for resolutions tags warning and sort tags list in resolution tags nag * lint fix * fix method typo * Add nag for summary formatting. * Check for link shorteners in donation links * add Gallery requirement nag for shaders and most resource packs * update index.json --------- Signed-off-by: IMB11 <hendersoncal117@gmail.com> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> Co-authored-by: coolbot100s <76798835+coolbot100s@users.noreply.github.com>
46 lines
1.7 KiB
JSON
46 lines
1.7 KiB
JSON
{
|
|
"name": "@modrinth/monorepo",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"ui:intl:extract": "pnpm run --filter=@modrinth/ui intl:extract",
|
|
"web:dev": "turbo run dev --filter=@modrinth/frontend",
|
|
"web:build": "turbo run build --filter=@modrinth/frontend",
|
|
"web:fix": "turbo run fix --filter=@modrinth/frontend",
|
|
"web:intl:extract": "pnpm run --filter=@modrinth/frontend intl:extract",
|
|
"app:dev": "turbo run dev --filter=@modrinth/app",
|
|
"docs:dev": "turbo run dev --filter=@modrinth/docs",
|
|
"app:build": "turbo run build --filter=@modrinth/app",
|
|
"app:fix": "turbo run fix --filter=@modrinth/app",
|
|
"app:intl:extract": "pnpm run --filter=@modrinth/app-frontend intl:extract",
|
|
"blog:fix": "turbo run fix --filter=@modrinth/blog",
|
|
"pages:build": "NITRO_PRESET=cloudflare-pages pnpm --filter frontend run build",
|
|
"moderation:fix": "turbo run fix --filter=@modrinth/moderation",
|
|
"moderation:intl:extract": "pnpm run --filter=@modrinth/moderation intl:extract",
|
|
"build": "turbo run build --continue",
|
|
"lint": "turbo run lint --continue",
|
|
"test": "turbo run test --continue",
|
|
"fix": "turbo run fix --continue",
|
|
"ci": "turbo run lint test --continue",
|
|
"intl:extract": "pnpm ui:intl:extract && pnpm web:intl:extract && pnpm app:intl:extract"
|
|
},
|
|
"devDependencies": {
|
|
"if-ci": "^3.0.0",
|
|
"prettier": "^3.3.2",
|
|
"turbo": "^2.5.4",
|
|
"vue": "^3.5.13"
|
|
},
|
|
"packageManager": "pnpm@9.15.0",
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"readable-stream@2.3.8": "patches/readable-stream@2.3.8.patch"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"endOfLine": "auto"
|
|
}
|
|
}
|