-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.36 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.36 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-dialog": "2.7.0",
"@tauri-apps/plugin-fs": "2.5.0",
"@tauri-apps/plugin-opener": "2.5.3",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-store": "2.4.2",
"@tauri-apps/plugin-updater": "2.10.1",
"material-icons": "^1.13.14",
"pinia": "^2.3.0",
"vue": "^3.5.32",
"vue-i18n": "^9.4.1",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.2.2",
"@tauri-apps/cli": "2.10.1",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-vue": "^6.0.5",
"daisyui": "^5.5.19",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.6.2",
"globals": "^16.5.0",
"lefthook": "^2.0.13",
"postcss": "^8.4.32",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.1.10"
},
"name": "sftool-gui",
"pnpm": {
"overrides": {
"brace-expansion@>=2.0.0 <=2.0.1": "2.0.3",
"@intlify/core-base@>=9.0.0 <9.14.5": "9.14.5",
"vue-i18n@>=9.0.0 <9.14.5": "9.14.5",
"vite@>=6.0.0 <=6.3.5": "6.4.1",
"vite@>=6.0.0 <=6.4.0": "6.4.1",
"glob@>=10.2.0 <10.5.0": "10.5.0",
"minimatch@<3.1.3": "3.1.4",
"minimatch@>=9.0.0 <9.0.6": "9.0.9",
"rollup@>=4.0.0 <4.59.0": "4.60.0",
"minimatch@>=9.0.0 <9.0.7": "9.0.9",
"minimatch@<3.1.4": "3.1.4",
"ajv@<6.14.0": "6.14.0",
"flatted@<3.4.0": "3.4.2",
"flatted@<=3.4.1": "3.4.2",
"brace-expansion@<1.1.13": "1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"yaml@>=2.0.0 <2.8.3": "2.8.3"
}
},
"private": true,
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"dev": "vite",
"format": "prettier --write .",
"i18n:check": "node scripts/i18n-check.js",
"lint": "eslint .",
"prepare": "lefthook install",
"preview": "vite preview",
"tauri": "tauri",
"update-version": "node scripts/version-manager.js update",
"changelog": "git-cliff -o CHANGELOG.md"
},
"type": "module",
"version": "1.0.0-9+gbf43fb5"
}