My-website/package.json
dependabot[bot] 3168b15b13
chore(deps): bump the cloudflare group with 2 updates (#71)
Bumps the cloudflare group with 2 updates: [@cloudflare/workers-types](https://github.com/cloudflare/workerd) and [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler).


Updates `@cloudflare/workers-types` from 4.20260405.1 to 4.20260413.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `wrangler` from 4.80.0 to 4.81.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.81.1/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260413.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: cloudflare
- dependency-name: wrangler
  dependency-version: 4.81.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: cloudflare
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-13 07:04:13 +00:00

102 lines
2.5 KiB
JSON

{
"name": "personal-site",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"lint": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"build": "tsc && vite build",
"type-check": "tsc --noEmit",
"dev": "vite --host 0.0.0.0",
"clean": "rimraf dist node_modules/.cache",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"itty-router": "^5.0.23",
"lucide-react": "0.564.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.0",
"tailwind-merge": "^3.4.1",
"zustand": "5.0.12"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260413.1",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "10.0.1",
"@rolldown/pluginutils": "1.0.0-rc.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/ui": "^4.1.4",
"@tailwindcss/postcss": "4.2.2",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"baseline-browser-mapping": "2.10.18",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"husky": "^9.0.10",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"postcss": "8.5.9",
"prettier": "^3.8.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.3",
"tailwindcss": "4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "8.58.1",
"vite": "7.3.2",
"vite-plugin-babel": "1.5.1",
"vitest": "4.1.4",
"web-vitals": "4.2.4",
"wrangler": "^4.81.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{html,css,json,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=18.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"sharp",
"workerd"
]
}
}