* Some changes ported from the work on the makerkit.dev website related to the marketing sections of the kit, such as documentation * Added slight background hue to make darker theme better looking * Support more complex configurations for documentation navigations. * Do not fetch content from Keystatic when non-needed * Add cursor pointers in dropdown * Updated packages
22 lines
520 B
JSON
22 lines
520 B
JSON
{
|
|
"name": "@kit/prettier-config",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"main": "index.mjs",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{mjs,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^5.1.0",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-tailwindcss": "^0.6.9"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/tsconfig": "workspace:*",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"prettier": "./index.mjs"
|
|
}
|