Sink/package.json
ccbikai ff0c2ad1eb fix(deps): downgrade nuxt to v3.12.4
Reverts nuxt to a more stable version by downgrading from 3.14.1592 to 3.12.4 to avoid potential breaking changes and instability issues with the beta release.

Adjusts pnpm lockfile to reflect version change and dependencies.
2024-12-24 22:26:49 +08:00

72 lines
1.9 KiB
JSON

{
"name": "sink",
"type": "module",
"version": "0.1.7",
"private": true,
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=20.11"
},
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"build:map": "node scripts/build-map.js",
"preview": "wrangler pages dev dist",
"deploy": "wrangler pages deploy dist",
"postinstall": "npm run build:map && nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxt typecheck",
"wrangler": "wrangler",
"lint-staged": "lint-staged"
},
"dependencies": {
"@number-flow/vue": "^0.3.3",
"@unovis/ts": "^1.5.0",
"@unovis/vue": "^1.5.0",
"@vee-validate/zod": "^4.15.0",
"@vueuse/core": "^12.2.0",
"fuse.js": "^7.0.0",
"intl-parse-accept-language": "^1.0.0",
"lucide-vue-next": "^0.469.0",
"mysql-bricks": "^1.1.2",
"nanoid": "^5.0.9",
"pluralize": "^8.0.0",
"qr-code-styling": "1.6.0-rc.1",
"radix-vue": "^1.9.11",
"ua-parser-js": "next",
"vee-validate": "^4.15.0",
"virtua": "^0.39.2",
"vue-sonner": "^1.3.0",
"vue3-simple-icons": "^13.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@nuxt/eslint": "^0.7.4",
"@nuxt/eslint-config": "^0.7.4",
"@nuxthub/core": "^0.8.10",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/tailwindcss": "^6.12.2",
"@vueuse/integrations": "^12.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"lint-staged": "^15.2.11",
"nuxt": "~3.12.4",
"shadcn-nuxt": "^0.11.3",
"simple-git-hooks": "^2.11.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vue-tsc": "^2.2.0",
"wrangler": "^3.99.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
}
}