mirror of
https://github.com/supabase/supabase.git
synced 2026-06-21 06:46:24 +08:00
This PR fixes some prettier issues: - Bump and unify all prettier versions to 3.7.3 across teh whole repo - Bump the SQL prettier plugin - When running `test:prettier`, check `mdx` files also - Run the new prettier format on all files --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
20 lines
557 B
JSON
20 lines
557 B
JSON
{
|
|
"name": "api-types",
|
|
"version": "0.0.0",
|
|
"description": "Types shared between Supabase apps and packages",
|
|
"main": "./index.ts",
|
|
"types": "./index.ts",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"clean": "rimraf node_modules",
|
|
"codegen": "openapi-typescript --redocly ./redocly.yaml --alphabetize --default-non-nullable=false && prettier --cache --write types/*.d.ts"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"openapi-typescript": "^7.4.3",
|
|
"prettier": "*",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|