-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.95 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.95 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
{
"name": "bitmeet",
"type": "module",
"version": "0.0.1",
"author": "Inled Group <hi@inled.es>",
"main": "electron/main.cjs",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"electron:dev": "electron .",
"electron:build": "astro build --config astro.electron.mjs && node fix-paths.mjs && electron-builder"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.10",
"@astrojs/react": "^5.0.3",
"@capacitor-mlkit/barcode-scanning": "^8.0.1",
"@capacitor/android": "^8.3.0",
"@capacitor/cli": "^8.3.0",
"@capacitor/core": "^8.3.0",
"@nanostores/react": "^1.1.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^6.1.7",
"electron-updater": "^6.8.3",
"firebase": "^12.10.0",
"frimousse": "^0.3.0",
"html5-qrcode": "^2.3.8",
"lucide-react": "^0.576.0",
"nanoid": "^5.1.6",
"nanostores": "^1.2.0",
"peerjs": "^1.5.5",
"qrcode": "^1.5.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sharp": "^0.34.5",
"webtorrent": "^2.8.5"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@types/webtorrent": "^0.110.1",
"electron": "^41.2.1",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "es.inled.bitmeet",
"productName": "BitMeet",
"publish": [
{
"provider": "github",
"owner": "InledGroup",
"repo": "bitmeet"
}
],
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json",
"resources/icon.png"
],
"mac": {
"icon": "resources/icon.png",
"target": [
"dmg"
]
},
"win": {
"icon": "resources/icon.png",
"target": [
"nsis",
"msi"
]
},
"linux": {
"icon": "resources/icon.png",
"target": [
"deb",
"rpm"
]
}
}
}