-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.71 KB
/
package.json
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
{
"name": "mediref-desktop",
"version": "2.0.22",
"repository": {
"type": "git",
"url": "https://github.com/HemalR/mediref-desktop.git"
},
"description": "Mediref on your Desktop!",
"main": "./dist/out-tsc/main.js",
"scripts": {
"build": "tsc",
"start": "npm run build && electron dist/out-tsc/main.js",
"file": "npm run build && electron dist/out-tsc/main.js \"\" \"C:\\Users\\Mediref\\OneDrive\\Desktop\\test-doc.pdf\" \"Nicolas\" \"[email protected]\" \"[email protected]\"",
"file1": "npm run build && electron dist/out-tsc/main.js \"\" \"C:\\Users\\Mediref\\OneDrive\\Desktop\\test-doc.pdf\" \"C:\\Users\\Mediref\\OneDrive\\Desktop\\test-doc.pdf\" \"[email protected]\" \"[email protected]\"",
"pack": "electron-builder",
"dist": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1",
"pack_windows": "npm run build && electron-builder --win",
"pack_64": "npm run build && electron-builder --win --x64",
"pack_32": "npm run build && electron-builder --win --ia32",
"pack_mac": "npm run build && electron-builder --mac",
"pub": "npm run build && electron-builder --mac --win --x64 -p always"
},
"author": "Mediref",
"license": "ISC",
"dependencies": {
"electron-context-menu": "^3.6.1",
"electron-dl": "^3.5.0",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.8",
"electron-updater": "^6.1.4",
"lodash": "^4.17.21",
"mime": "^3.0.0"
},
"build": {
"appId": "com.mediref.desktop",
"asar": true,
"productName": "Mediref",
"copyright": "Copyright © 2024 Mediref",
"dmg": {
"title": "Mediref",
"icon": "build/icon.png",
"sign": true
},
"files": {
"filter": [
"dist/out-tsc/**"
]
},
"mac": {
"category": "public.app-category.business",
"type": "distribution",
"fileAssociations": [
{
"ext": [
"jpg",
"jpeg",
"png",
"PNG",
"tiff"
],
"description": "Image files",
"role": "Viewer"
},
{
"ext": [
"pdf",
"PDF"
],
"description": "PDF files",
"role": "Viewer"
}
],
"target": {
"target": "default",
"arch": "universal"
}
},
"win": {
"target": {
"target": "nsis",
"arch": [
"x64"
]
},
"publisherName": "AM Healthcare Pty Ltd",
"certificateFile": "./certificates/mediref.pfx",
"certificatePassword": "6o0NDLWDBfscP&en0T843V0C",
"timeStampServer": "http://timestamp.sectigo.com"
},
"nsis": {
"oneClick": true,
"runAfterFinish": true,
"allowToChangeInstallationDirectory": false
}
},
"devDependencies": {
"@types/lodash": "^4.14.200",
"@types/mime": "^3.0.2",
"electron": "26.2.4",
"electron-builder": "^24.6.4",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}