Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

5 changes: 0 additions & 5 deletions .prettierrc

This file was deleted.

61 changes: 0 additions & 61 deletions CONTRIBUTION_RULES_GSSOC25.md

This file was deleted.

42 changes: 42 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": true,
"includes": ["**", "!node_modules", "!.next", "!dist", "!build"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noUnknownAtRules": "off"
}
},
"domains": {
"next": "recommended",
"react": "recommended"
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
}
}
869 changes: 158 additions & 711 deletions bun.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
}
55 changes: 26 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,52 +4,49 @@
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"dev": "next dev",
"start": "next start",
"lint": "eslint .",
"format": "prettier \"src/**/*.{ts,tsx,js,jsx,json,css}\" \"content/**/*.{md,mdx}\" --write",
"format:check": "prettier \"src/**/*.{ts,tsx,js,jsx,json,css}\" \"content/**/*.{md,mdx}\" --check",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"postinstall": "fumadocs-mdx"
},
"dependencies": {
"@next/third-parties": "^15.4.5",
"@next/third-parties": "^16.2.4",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fumadocs-core": "15.6.5",
"fumadocs-mdx": "11.7.0",
"fumadocs-ui": "15.6.5",
"latest": "^0.2.0",
"lenis": "^1.3.13",
"lucide-react": "^0.525.0",
"motion": "^12.23.12",
"next": "15.4.10",
"lenis": "^1.3.23",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"next": "16.2.4",
"ogl": "^1.0.11",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prismjs": "^1.30.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-simple-code-editor": "^0.14.1",
"schema-dts": "^1.1.5",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"use-debounce": "^10.0.5"
"schema-dts": "^2.0.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"use-debounce": "^10.1.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@biomejs/biome": "^2.4.12",
"@tailwindcss/postcss": "^4.2.4",
"@types/mdx": "^2.0.13",
"@types/node": "24.0.15",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.31.0",
"eslint-config-next": "15.4.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.5",
"typescript": "^5.8.3"
"@types/node": "25.6.0",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
}
}
2 changes: 1 addition & 1 deletion postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
plugins: {
'@tailwindcss/postcss': {},
"@tailwindcss/postcss": {},
},
};
Loading
Loading