-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.41 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.41 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
{
"name": "jbirc",
"productName": "jbIRC",
"version": "1.3.3",
"description": "jbIRC is a modern, user friendly, privacy-first IRC client.",
"repository": {
"type": "git",
"url": "git+https://github.com/Jbablestime/jbIRC.git"
},
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"compile": "vite build -c vite.main.config.mjs --outDir .vite/build && vite build -c vite.preload.config.mjs --outDir .vite/build && vite build -c vite.renderer.config.mjs --outDir .vite/renderer/main_window",
"package": "npm run compile && electron-builder build --win --dir",
"make": "npm run compile && electron-builder build --win",
"build:all": "npm run compile && electron-builder build --win --mac --linux",
"build:windows": "npm run compile && electron-builder build --win",
"build:macos": "npm run compile && electron-builder build --mac",
"build:linux": "npm run compile && electron-builder build --linux",
"build:forge": "electron-forge make --platform=all",
"build:all": "npm run compile && electron-builder build --win --linux",
"build:windows": "npm run compile && electron-builder build --win",
"build:macos": "npm run compile && electron-builder build --mac",
"build:linux": "npm run compile && electron-builder build --linux",
"build:forge": "electron-forge make --platform=all",
"build:mobile": "vite build --config vite.mobile.config.js"
},
"dependencies": {
"events": "^3.3.0",
"irc-framework": "^4.14.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"readable-stream": "^4.7.0",
"socks": "^2.8.7",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.2.0",
"@electron-forge/maker-deb": "^7.2.0",
"@electron-forge/maker-rpm": "^7.2.0",
"@electron-forge/maker-squirrel": "^7.2.0",
"@electron-forge/maker-zip": "^7.2.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.2.0",
"@electron-forge/plugin-fuses": "^7.2.0",
"@electron-forge/plugin-vite": "^7.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.23",
"electron": "28.2.0",
"electron-builder": "^24.13.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"vite": "^5.0.12",
"vite-plugin-node-polyfills": "^0.24.0"
},
"build": {
"nsis": {
"oneClick": false,
"perMachine": false,
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"shortcutName": "jbIRC"
},
"appId": "com.jbirc.client",
"icon": "icon.ico",
"productName": "jbIRC",
"compression": "maximum",
"directories": {
"output": "dist"
},
"files": [
"package.json",
{
"from": ".vite",
"to": ".vite",
"filter": [
"**/*"
]
},
"node_modules/**/*"
],
"asarUnpack": [
"**/node_modules/irc-framework/**/*",
"**/node_modules/socks/**/*"
],
"win": {
"target": "nsis",
"icon": "icon.ico"
},
"mac": {
"target": "dmg",
"category": "public.app-category.social-networking",
"icon": "icon.icns"
},
"linux": {
"target": "deb",
"icon": "icon.png"
},
"extraMetadata": {
"main": ".vite/build/main.js"
}
},
"author": {
"name": "Jonathan (Jb) Mauler",
"email": "jonathan@thejbassociation.com",
"url": "https://biography.gg/Jb"
}
}