-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mini-qr",
"private": true,
"version": "0.9.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --ignore-pattern \"*.json\"",
"format": "prettier --write",
"postinstall": "husky install"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx,json}": [
"pnpm lint",
"pnpm format"
]
},
"dependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dom-to-image": "^2.6.0",
"dom-to-svg": "^0.12.2",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"lucide-vue-next": "^0.321.0",
"qr-code-styling": "^1.9.1",
"radix-vue": "^1.9.17",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"vite": "^5.4.14",
"vue": "^3.5.13",
"vue-i18n": "^9.14.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.5",
"@types/dom-to-image": "^2.6.7",
"@types/node": "^20.17.23",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.57.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^8.0.3",
"lint-staged": "^15.4.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vue-eslint-parser": "^9.4.3"
}
}