-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.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.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"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.6.0-rc.1",
"radix-vue": "^1.4.1",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"vite": "^5.1.7",
"vue": "^3.4.15",
"vue-i18n": "9"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@types/dom-to-image": "^2.6.4",
"@types/node": "^20.10.5",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.46.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.16.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.23",
"prettier": "^3.0.1",
"typescript": "^5.3.3",
"vue-eslint-parser": "^9.3.1"
}
}