Merge pull request #87 from sern-handler/jacoobes-patch-5

Update package.json
This commit is contained in:
Jacob Nguyen
2025-01-29 12:37:25 -06:00
committed by GitHub
9 changed files with 1717 additions and 15 deletions

1702
bun.lock Normal file

File diff suppressed because it is too large Load Diff

BIN
bun.lockb

Binary file not shown.

View File

@@ -17,13 +17,11 @@
"@astrojs/react": "^3.5.0",
"@astrojs/starlight": "0.23.1",
"@astrojs/starlight-tailwind": "2.0.3",
"@astrojs/tailwind": "^5.1.5",
"@astropub/md": "^0.4.0",
"@expressive-code/plugin-line-numbers": "^0.35.3",
"@lunariajs/core": "^0.0.32",
"@lunariajs/starlight": "^0.0.6",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/postcss": "^4.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "4.9.1",
@@ -41,17 +39,16 @@
"starlight-links-validator": "^0.9.0",
"starlight-typedoc": "0.12.2",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "next",
"typescript": "~5.4.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/bun": "^1.1.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
}

7
postcss.config.cjs Normal file
View File

@@ -0,0 +1,7 @@
module.exports = {
plugins: {
"@tailwindcss/postcss": {},
}
};

View File

@@ -1,6 +0,0 @@
export default {
plugins: {
autoprefixer: {},
"@tailwindcss/postcss": {},
}
};

View File

@@ -8,7 +8,7 @@ hero:
file: ~/assets/logo/sern-logo.svg
actions:
- text: <b>npm create @sern/bot</b>
link: /v4/reference/quickstart-guide
link: /v4/reference/getting-started
icon: right-arrow
variant: primary
---

View File

@@ -29,4 +29,4 @@ Again, we recommend using [discordjs.guide](https://discordjs.guide/preparations
A development command inside the CLI is in the works. For now, you have to restart the bot manually for your changes to take effect.
<PackageManagers command="dev" text="" />
If you need help, feel free to ask on our [Discord](https://sern.dev/discord)!
If you need help, feel free to ask on our [Discord](https://sern.dev/discord)!

View File

@@ -12,7 +12,7 @@ interface Link {
const links: Link[] = [
{
name: "Docs",
href: "/v4/reference/quickstart-guide",
href: "/v4/reference/getting-started",
},
{
name: "Plugins",

View File

@@ -1 +1,3 @@
@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;