-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) 路 2.57 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) 路 2.57 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
{
"name": "aeroftp",
"private": true,
"version": "4.1.9",
"description": "AeroFTP - Fast, Beautiful, Reliable FTP Client",
"type": "module",
"scripts": {
"dev": "vite",
"postinstall": "patch-package",
"build": "tsc && cross-env NODE_OPTIONS=--max-old-space-size=4096 vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "cd src-tauri && cargo test",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"smoke": "node scripts/smoke.mjs",
"typecheck": "tsc --noEmit",
"security:regression": "node .github/scripts/security-regression.cjs",
"security:report": "node scripts/security-report.cjs",
"ci:pre-push": "bash .github/scripts/pre-push-gate.sh",
"i18n:validate": "npx tsx scripts/i18n-validate.ts",
"i18n:sync": "npx tsx scripts/i18n-sync.ts",
"i18n:stats": "npx tsx scripts/i18n-stats.ts",
"i18n:diacritics": "node scripts/i18n-diacritics.mjs --strict",
"i18n:untranslated": "node scripts/i18n-untranslated.mjs --strict",
"gen:cli-catalog": "npx tsx scripts/gen-cli-catalog.ts",
"gen:providers-table": "npx tsx scripts/gen-providers-table.ts",
"gen:provider-inventory": "npx tsx scripts/gen-provider-inventory.ts",
"check:provider-inventory": "npx tsx scripts/gen-provider-inventory.ts --check"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "^2.7.3",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-log": "^2.9.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-shell": "^2.3.6",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^5.5.0",
"country-flag-icons": "^1.6.20",
"dompurify": "^3.4.14",
"lucide-react": "^1.0.1",
"monaco-editor": "^0.56.0",
"prismjs": "^1.30.0",
"qrcode.react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-virtuoso": "^4.18.12",
"react-window": "^2.3.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/prismjs": "^1.26.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^6.1.1",
"autoprefixer": "^10.5.5",
"cross-env": "^10.1.0",
"patch-package": "^8.0.1",
"postcss": "^8.5.28",
"tailwindcss": "^3.4.1",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"overrides": {
"picomatch": ">=2.3.2",
"dompurify": "$dompurify"
}
}