forked from Kasper24/walltone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.96 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.96 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"type": "module",
"name": "walltone",
"productName": "walltone",
"version": " 0.0.1",
"description": "Wallpaper and theme management application",
"main": ".vite/build/main.js",
"author": "Kasper <ofek4430@gmail.com>",
"license": "GPL-3.0",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run format:write"
]
},
"scripts": {
"lint-staged": "lint-staged",
"prepare": "husky",
"lint:check": "eslint --max-warnings=0",
"lint:fix": "eslint --fix",
"ts:check": "tsc --noEmit",
"format:check": "prettier --check \"**/*.{ts,tsx,js,css,yaml}\"",
"format:write": "prettier --write \"**/*.{ts,tsx,js,css,yaml}\"",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"format": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=src/tests/utils",
"test:components": "jest --testPathPattern=src/tests/components",
"test:hooks": "jest --testPathPattern=src/tests/hooks",
"test:integration": "jest --testPathPattern=src/tests/integration",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test && npm run test:e2e"
},
"devDependencies": {
"@electron-forge/cli": "^7.8.2",
"@electron-forge/maker-deb": "^7.8.2",
"@electron-forge/maker-rpm": "^7.8.2",
"@electron-forge/maker-zip": "^7.8.2",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.2",
"@electron-forge/plugin-fuses": "^7.8.2",
"@electron-forge/plugin-vite": "^7.8.2",
"@electron-forge/shared-types": "^7.8.2",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.32.0",
"@types/node": "^24.1.0",
"@types/quantize": "^1.0.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/react-virtualized": "^9.22.2",
"@vitejs/plugin-react": "^4.7.0",
"electron": "~37.2.5",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript": "^5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.6"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.84.1",
"@uiw/react-color": "^2.7.3",
"blurhash": "^2.0.5",
"chroma.ts": "^1.0.10",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"conf": "^14.0.0",
"electron-trpc-experimental": "^1.0.0-alpha.0",
"env-paths": "^3.0.0",
"keytar": "^7.9.0",
"lucide-react": "^0.536.0",
"next-themes": "^0.4.6",
"pino": "^9.8.0",
"pino-pretty": "^13.1.1",
"quantize": "^1.0.2",
"react": "^19.1.1",
"react-blurhash": "^0.3.0",
"react-dom": "^19.1.1",
"react-virtualized": "^9.22.6",
"sharp": "^0.34.3",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.6",
"use-debounce": "^10.0.5",
"uuid": "^11.1.0",
"zod": "^4.0.14"
},
"overrides": {
"@trpc/server": "11.4.4"
}
}