-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.86 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "randdeck",
"private": true,
"version": "0.6.0",
"license": "MIT",
"packageManager": "npm@11.6.2",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"i18n:verify": "node scripts/verify-i18n.mjs",
"privacy:verify": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File scripts/verify-privacy.ps1",
"test:tauri-runtime": "node scripts/tauri-runtime-smoke.mjs",
"icons:generate": "node scripts/generate-icons.mjs",
"icons:verify": "node scripts/verify-icons.mjs",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build:portable": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File scripts/build-tauri.ps1 -Target portable",
"tauri:build:offline": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File scripts/build-tauri.ps1 -Target offline"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-tooltip": "^1.2.16",
"@tanstack/react-virtual": "^3.14.9",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-global-shortcut": "^2.3.2",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-store": "^2.4.4",
"@tauri-apps/plugin-window-state": "^2.4.1",
"clsx": "^2.1.1",
"i18next": "^26.4.0",
"lucide-react": "^0.468.0",
"motion": "^13.1.0",
"papaparse": "^5.6.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-i18next": "^17.0.12",
"recharts": "^3.10.1",
"tone": "^15.1.22",
"zod": "^4.4.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tauri-apps/cli": "^2.9.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.4",
"@types/papaparse": "^5.5.2",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fake-indexeddb": "^6.2.5",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"pngjs": "^7.0.0",
"tailwindcss": "^4.1.12",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.0.12",
"vitest": "^3.2.4"
},
"overrides": {
"esbuild": "0.28.1",
"nanoid": "3.3.18"
}
}