* chore: bump actions and pin versions * build: switch to blacksmith * fix: use rust-toolchain stable * build: improve pnpm store caching * chore: remove emoji from workflows * fix: run prepare job on blacksmith * chore: kebab case id * build: add concurrency groups to limit duplicate jobs * build: switch around node setup and pnpm setup task * chore: bump to nodejs 24, fix pnpm caching * fix: enable corepack * fix: concurrency deadlock in frontend preview * fix: approve build scripts * fix: just don't cancel concurrent previews * build: remove pnpm setup action everywhere * build: cache apt packages * build: yet another attempt at fixing concurrency * build: lower runner type for frontend deploy * fix: eslint not existing * build: add sccache to turbo-ci * fix: correct nextest pkg * fix: turbo ignoring sccache * revert me: test labrinth tests * Revert "revert me: test labrinth tests" This reverts commit def5cc19183d5c0fe3b6f3c03635d73bb59bd312. * build: compile app before docker build * build: lower runner types * build: remove docker inline caching * build: try mold on labrinth * build: tweak labrinth prod build profile * fix: app windows builds and caching * fix: tombi format cargo.toml * fix: swap ping test to cubecraft to avoid CI flakiness * typos fix --------- Co-authored-by: aecsocket <aecsocket@tutanota.com>
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "@modrinth/tooling-config",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"description": "Unified tooling configuration for Modrinth monorepo",
|
|
"main": "./index.js",
|
|
"scripts": {
|
|
"lint": "prettier --check .",
|
|
"fix": "prettier --write ."
|
|
},
|
|
"exports": {
|
|
"./eslint/*": "./eslint/*",
|
|
"./typescript/*": "./typescript/*",
|
|
"./prettier.config.cjs": "./prettier.config.cjs",
|
|
"./frontend.prettier.config.cjs": "./frontend.prettier.config.cjs",
|
|
"./app-lib.prettier.config.cjs": "./app-lib.prettier.config.cjs",
|
|
"./labrinth.prettier.config.cjs": "./labrinth.prettier.config.cjs",
|
|
"./tailwind/*": "./tailwind/*",
|
|
"./script-utils/*": "./script-utils/*"
|
|
},
|
|
"files": [
|
|
"eslint/",
|
|
"typescript/",
|
|
"prettier/",
|
|
"tailwind/",
|
|
"index.js"
|
|
],
|
|
"peerDependencies": {
|
|
"eslint": "^9.31.0",
|
|
"prettier": "^3.6.2",
|
|
"typescript": ">=5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@prettier/plugin-xml": "^3.4.2",
|
|
"prettier-plugin-sql-cst": "^0.13.0",
|
|
"prettier-plugin-toml": "^2.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.4.1",
|
|
"@eslint/js": "^9.32.0",
|
|
"@nuxt/eslint-config": "^0.5.7",
|
|
"@vue/tsconfig": "^0.7.0",
|
|
"eslint": "^9.32.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.3",
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
"eslint-plugin-turbo": "^2.5.4",
|
|
"eslint-plugin-vue": "^10.4.0",
|
|
"vue-eslint-parser": "^10.1.3",
|
|
"globals": "^16.3.0",
|
|
"typescript-eslint": "^8.38.0"
|
|
}
|
|
}
|