-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.48 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
{
"name": "omnia",
"productName": "omnia",
"version": "0.10.0",
"description": "Omnia is a desktop workspace application built with Electron and React. It provides a unified interface for managing multiple social media accounts, allowing users to stay connected and productive without the need to switch between different platforms.",
"main": ".vite/build/main.js",
"private": true,
"scripts": {
"start": "electron-forge start",
"package": "cross-env NODE_ENV=production electron-forge package",
"make": "cross-env NODE_ENV=production electron-forge make",
"publish": "cross-env NODE_ENV=production electron-forge publish",
"lint": "eslint --ext .ts,.tsx ."
},
"build": {
"appId": "com.strielok.omnia",
"productName": "Omnia",
"icon": "src/assets/icon.png"
},
"keywords": [
"electron",
"react",
"multi tasking",
"social media",
"productivity"
],
"author": {
"name": "Michał Lach",
"email": "kontakt@michal-lach.pl"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.27",
"babel-loader": "^10.1.1",
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"electron": "github:castlabs/electron-releases#v40.1.0+wvcus",
"encoding": "^0.1.13",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"iconv-lite": "^0.6.3",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"typescript": "~4.5.4",
"vite": "^5.4.21"
},
"dependencies": {
"@heroui/react": "^3.0.1",
"@heroui/styles": "^3.0.1",
"@osmn-byhn/electron-make-pacman": "^1.0.0",
"electron-squirrel-startup": "^1.0.1",
"postcss-loader": "^8.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-router-dom": "^7.13.1",
"zustand": "^5.0.12"
}
}