bilibili-qr-login / package.json
神代綺凛
chore: update dependencies
077d587
raw
history blame contribute delete
No virus
1.49 kB
{
"name": "bilibili-qr-login",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && ncc build ./server/index.ts -m -o dist",
"preview": "cd dist && node index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@chenfengyuan/vue-qrcode": "^2.0.0",
"@hono/node-server": "^1.11.0",
"@types/node": "^20.12.7",
"@types/nodemon": "^1.19.6",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vercel/ncc": "^0.38.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"hono": "^4.2.5",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"qrcode": "^1.5.3",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.23",
"vue-tsc": "^2.0.13",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{css,less}": [
"prettier --write"
]
}
}