-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.67 KB
/
package.json
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
{
"name": "@elek-io/client",
"productName": "elek.io Client",
"description": "The elek.io Client is a desktop application for Windows, macOS and Linux that allows you to manage content.",
"version": "0.3.0",
"type": "module",
"main": "./out/main/index.js",
"homepage": "https://elek.io",
"repository": "https://github.com/elek-io/client",
"bugs": {
"url": "https://github.com/elek-io/client/issues"
},
"author": {
"name": "elek.io",
"email": "[email protected]",
"url": "https://elek.io"
},
"license": "todo",
"scripts": {
"clean": "rimraf ./out && rimraf ./dist",
"format": "prettier --write .",
"lint": "eslint ./src --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run clean && electron-vite build && electron-builder",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build --dir",
"build:win": "npm run build --win",
"build:mac": "npm run build --mac",
"build:linux": "npm run build --linux"
},
"dependencies": {
"@electron-toolkit/preload": "3.0.1",
"@electron-toolkit/utils": "3.0.0",
"@elek-io/core": "0.14.0",
"@fontsource-variable/montserrat": "5.1.0",
"@fontsource/roboto": "5.1.0",
"@hookform/resolvers": "3.9.0",
"@radix-ui/react-alert-dialog": "1.1.2",
"@radix-ui/react-avatar": "1.1.1",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-popover": "1.1.2",
"@radix-ui/react-scroll-area": "1.2.0",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slider": "1.2.1",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-switch": "1.1.1",
"@radix-ui/react-tooltip": "1.1.3",
"@sentry/electron": "5.6.0",
"@sentry/react": "8.34.0",
"@sentry/vite-plugin": "2.22.5",
"@tanstack/react-query": "5.59.13",
"@tanstack/react-router": "1.65.0",
"@tanstack/react-table": "8.20.5",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"date-fns": "3.6.0",
"dugite": "2.7.1",
"electron-updater": "6.3.9",
"lucide-react": "0.452.0",
"react-day-picker": "8.10.1",
"react-hook-form": "7.53.0",
"sonner": "1.5.0",
"tailwind-merge": "2.5.4",
"tailwindcss-animate": "1.0.7",
"zod": "3.23.8",
"zustand": "4.5.4"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@electron-toolkit/eslint-config-prettier": "2.0.0",
"@electron-toolkit/eslint-config-ts": "2.0.0",
"@hookform/devtools": "4.3.1",
"@redux-devtools/extension": "3.3.0",
"@tanstack/router-devtools": "1.65.0",
"@tanstack/router-plugin": "1.65.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@tsconfig/vite-react": "3.0.2",
"@types/node": "20.14.10",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@vitejs/plugin-react": "4.3.2",
"autoprefixer": "10.4.20",
"electron": "32.2.0",
"electron-builder": "25.1.8",
"electron-vite": "2.3.0",
"eslint": "8.57.0",
"eslint-plugin-react": "7.37.1",
"postcss": "8.4.47",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"tailwindcss": "3.4.13",
"typescript": "5.6.3",
"vite": "5.4.8"
}
}