mirror of
https://github.com/readest/readest
synced 2026-04-21 13:37:44 +00:00
* chore: enforce prettier, ignore submodules and vendor files * chore: add format check in CI --------- Co-authored-by: Huang Xin <chrox.huang@gmail.com>
33 lines
984 B
JSON
33 lines
984 B
JSON
{
|
|
"name": "@readest/monorepo",
|
|
"private": true,
|
|
"repository": "readest/readest",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"tauri": "pnpm --filter @readest/readest-app tauri",
|
|
"dev-web": "pnpm --filter @readest/readest-app dev-web",
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,json,md,html,yml}\"",
|
|
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,css,json,md,html,yml}\""
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.9.1",
|
|
"@sindresorhus/tsconfig": "^6.0.0",
|
|
"eslint": "^9.28.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"husky": "^9.1.6",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
"typescript": "^5"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"glob": ">=11.1.0",
|
|
"jws": ">=4.0.1",
|
|
"vite": ">=7.0.8",
|
|
"body-parser": ">=2.2.1",
|
|
"@babel/runtime": ">=7.26.10",
|
|
"@babel/helpers": ">=7.26.10"
|
|
}
|
|
}
|
|
}
|