-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.64 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
{
"name": "just-share",
"version": "1.0.0",
"description": "A secure, local-first LAN file-sharing app with Electron and Express.",
"main": "main.js",
"author": "Refat",
"license": "MIT",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"dependencies": {
"auto-launch": "^5.0.5",
"cors": "^2.8.5",
"electron-store": "^8.1.0",
"express": "^4.18.2",
"multer": "^2.0.0",
"ngrok": "^5.0.0-beta.2",
"node-notifier": "^10.0.1",
"qrcode": "^1.5.3"
},
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.refat.JustShare",
"productName": "Just Share",
"directories": {
"output": "dist"
},
"files": [
"assets/**/*",
"uploads/**/*",
"public/**/*",
"windows/**/*",
"server.js",
"main.js",
"preload.js",
"store.js",
"package.json"
],
"win": {
"target": "nsis",
"icon": "assets/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"include": "build/installer.nsh",
"license": "build/license.txt",
"installerHeader": "build/installerHeader.bmp",
"installerSidebar": "build/installerSidebar.bmp"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/refatwashere/SimpleShare.git"
},
"keywords": [],
"type": "commonjs",
"bugs": {
"url": "https://github.com/refatwashere/SimpleShare/issues"
},
"homepage": "https://github.com/refatwashere/SimpleShare#readme"
}