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
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
if: ${{ env.VERCEL_TOKEN && env.VERCEL_ORG_ID && env.VERCEL_PROJECT_ID }}
Comment thread
TechQuery marked this conversation as resolved.

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v6
with:
version: 10
- uses: actions/setup-node@v4
version: 11
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: pnpm
- name: Install Dependencies
env:
Expand All @@ -32,7 +32,7 @@ jobs:

- name: Deploy to Vercel
id: vercel-deployment
uses: amondnet/vercel-action@v25
uses: amondnet/vercel-action@v42.3.0
if: ${{ env.VERCEL_TOKEN && env.VERCEL_ORG_ID && env.VERCEL_PROJECT_ID }}
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
"linter": {
"enabled": true,
"rules": {
Expand Down
58 changes: 24 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,63 +5,53 @@
"scripts": {
"prepare": "husky",
"install-shadcn": "shadcn-helper install",
"test": "lint-staged",
"test": "lint-staged && git add .",
Comment thread
TechQuery marked this conversation as resolved.
"registry:build": "shadcn build",
"dev": "next dev --webpack",
"build": "npm run registry:build && next build --webpack",
"start": "next start"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-checkbox": "^1.3.4",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-label": "^2.1.9",
"@radix-ui/react-slot": "^1.2.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"edkit": "^1.2.7",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.562.0",
"mobx": "^6.15.0",
"lucide-react": "^1.18.0",
"mobx": "^6.16.1",
"mobx-i18n": "^0.7.2",
"mobx-react": "^9.2.1",
"mobx-react": "^9.2.2",
"mobx-react-helper": "^0.5.1",
"mobx-restful": "^2.1.4",
"next": "^16.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"web-utility": "^4.6.4"
"web-utility": "^4.6.6"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-typescript": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@biomejs/biome": "^2.3.10",
"@babel/plugin-proposal-decorators": "^7.29.7",
"@babel/plugin-transform-typescript": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@biomejs/biome": "^2.5.0",
"@octokit/openapi-types": "^27.0.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/postcss": "^4.3.1",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.19.3",
"@types/react": "^19.2.7",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"lint-staged": "^17.0.7",
"mobx-github": "^0.6.2",
"shadcn": "^3.6.2",
"shadcn-helper": "^0.5.5",
"tailwindcss": "^4.1.18",
"shadcn": "^3.8.5",
"shadcn-helper": "^0.5.6",
"tailwindcss": "^4.3.1",
"typescript": "~5.9.3"
},
"pnpm": {
"overrides": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"core-js"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write",
Expand Down
Loading