-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.85 KB
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
59
60
61
62
63
64
{
"name": "rafandoo",
"version": "2.0.1",
"author": "Rafael Camargo <rafaelcamargo.inf@gmail.com>",
"license": "MIT",
"private": true,
"packageManager": "bun@1.3.14",
"scripts": {
"dev": "run-p dev:vite type-check",
"dev:vite": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint ./src --ext .ts,.vue",
"lint:debug": "eslint ./src --debug",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"check": "run-s format:check lint build",
"fix": "run-s format lint:fix"
},
"dependencies": {
"@vueuse/core": "14.3.0",
"blueimp-md5": "2.19.0",
"html2canvas-pro": "2.2.4",
"jspdf": "4.2.1",
"lucide-vue-next": "0.511.0",
"vue": "3.5.42",
"vue-i18n": "11.4.6"
},
"devDependencies": {
"@tailwindcss/vite": "4.3.3",
"@tsconfig/node24": "24.0.4",
"@types/blueimp-md5": "2.18.2",
"@types/node": "26.1.1",
"@vitejs/plugin-vue": "6.0.8",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.9.0",
"@vue/tsconfig": "0.9.1",
"eslint": "10.7.0",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-tailwindcss": "4.4.0",
"eslint-plugin-unused-imports": "4.4.1",
"eslint-plugin-vue": "10.10.0",
"eslint-plugin-vue-scoped-css": "3.1.1",
"npm-run-all2": "9.0.2",
"prettier": "3.9.5",
"prettier-plugin-tailwindcss": "0.8.1",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"vite": "8.2.2",
"vite-plugin-vue-devtools": "8.1.5",
"vue-eslint-parser": "10.4.1",
"vue-tsc": "3.3.7"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}