-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.73 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
{
"name": "Visemte",
"private": true,
"version": "0.1.11",
"build": "260418",
"author": "Andreas Safer",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"preview": "vite preview",
"tauri:build": "tauri build --target universal-apple-darwin && node scripts/rename-bundles.mjs",
"tauri:build:aarch64": "tauri build --target aarch64-apple-darwin && node scripts/rename-bundles.mjs",
"tauri:build:x86_64": "tauri build --target x86_64-apple-darwin && node scripts/rename-bundles.mjs",
"tauri:build:all": "pnpm tauri:build && pnpm tauri:build:aarch64 && pnpm tauri:build:x86_64",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepare": "[ -d .git ] && husky || true"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-shell": "^2.3.5",
"@types/react-window": "^2.0.0",
"i18next": "^26.0.5",
"i18next-browser-languagedetector": "^8.2.1",
"mjml-browser": "4.18.0",
"nanoid": "^5.1.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.3",
"react-window": "^2.2.7",
"zundo": "^2.3.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.8",
"vite-bundle-visualizer": "^1.2.1",
"vitest": "^4.1.4",
"zod": "^4.3.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.css": [
"prettier --write"
]
}
}