-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 1.97 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
{
"name": "nullmesh",
"version": "1.0.12",
"description": "nullmesh — Meshtastic Network Monitor",
"main": "main.js",
"type": "commonjs",
"author": "nullmesh",
"license": "MIT",
"private": true,
"scripts": {
"bundle": "node bundle.mjs",
"start": "electron .",
"dist": "node bundle.mjs && electron-builder --win --x64"
},
"dependencies": {
"@bufbuild/protobuf": "^2.12.0",
"@meshtastic/core": "2.6.7",
"@meshtastic/transport-node": "0.0.2",
"ws": "^8.18.0"
},
"devDependencies": {
"electron": "^31.7.7",
"electron-builder": "^24.13.3",
"esbuild": "^0.20.2"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"@meshtastic/core",
"@meshtastic/transport-node"
]
},
"build": {
"appId": "com.nullmesh.app",
"productName": "nullmesh",
"asar": true,
"compression": "maximum",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"main.js",
"index.html",
"tokens.css",
"styles.css",
"app.js",
"server.bundle.cjs",
"package.json",
"assets/**",
"!node_modules/**",
"!server/**",
"!dist/**",
"!.git/**",
"!**/*.bat",
"!bundle.mjs",
"!pnpm-lock.yaml",
"!**/*.md"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico",
"signAndEditExecutable": true
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "nullmesh",
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico",
"artifactName": "nullmesh-setup-${version}.${ext}"
}
}
}