-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (68 loc) · 1.43 KB
/
package.json
File metadata and controls
69 lines (68 loc) · 1.43 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
{
"name": "weshare",
"version": "1.0.1",
"description": "An Cross platform App to share files easily across devices",
"main": "index.js",
"author": {
"name": "Salman Hossain",
"email": "salmanhossain11222626@gmail.com",
"url": "https://salman.com.bd"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "electron .",
"dev": "nodemon --exec electron .",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "io.github.ocircleo.weshare",
"dmg": {
"title": "We Share 1.0.1",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"win": {
"target": "NSIS",
"artifactName": "${productName}-${version}-setup.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Utility"
}
},
"devDependencies": {
"electron": "^34.2.0",
"electron-builder": "^25.1.8",
"nodemon": "^3.1.9"
},
"dependencies": {
"axios": "^1.8.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"fs-extra": "^11.3.0",
"multer": "^1.4.5-lts.1",
"os": "^0.1.2",
"path": "^0.12.7",
"uuid": "^11.1.0"
}
}