forked from didirus/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 --------- Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
25 lines
778 B
JSON
25 lines
778 B
JSON
{
|
|
"name": "@modrinth/moderation",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "./index.ts",
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"lint": "eslint . && prettier --check .",
|
|
"fix": "eslint . --fix && prettier --write . && pnpm run intl:extract",
|
|
"intl:extract": "formatjs extract \"**/*.{vue,ts,tsx,js,jsx,mts,cts,mjs,cjs}\" --ignore \"**/*.d.ts\" --ignore \"node_modules/**/*\" --out-file locales/en-US/index.json --preserve-whitespace"
|
|
},
|
|
"dependencies": {
|
|
"@modrinth/assets": "workspace:*",
|
|
"@modrinth/utils": "workspace:*",
|
|
"vue": "^3.5.13"
|
|
},
|
|
"devDependencies": {
|
|
"@formatjs/cli": "^6.2.12",
|
|
"@vintl/vintl": "^4.4.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-custom": "workspace:*",
|
|
"tsconfig": "workspace:*"
|
|
}
|
|
}
|