-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.02 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "intersect-tool",
"version": "1.2.4",
"description": "Intersect Admin Tool for Intersect Engine",
"main": "main.js",
"scripts": {
"start": "electron . --trace-warnings",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"build": "electron-builder build"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^20.1.3",
"electron-builder": "^23.3.3"
},
"dependencies": {
"axios": "^0.27.2",
"bootstrap": "^5.2.1",
"compression": "^1.7.4",
"ejs": "^3.1.8",
"electron-store": "^8.1.0",
"electron-updater": "^5.2.1",
"matomo-tracker": "^2.2.4",
"navigo": "^8.11.1",
"node-fetch": "2.0"
},
"build": {
"appId": "com.intersect-tool.thomasfdsapp",
"productName": "Intersect-Tools",
"copyright": "Copyright © 2022 Thomasfds",
"icon": "build/Icon.ico",
"directories": {
"output": "release/"
},
"extraMetadata": {
"name": "Intersect-Tools",
"description": "Intersect Admin Tool for Intersect Engine"
},
"compression": "maximum",
"publish": [
{
"provider": "generic",
"url": "https://intersect-connect.tk/downloads/intersect-tools/"
}
],
"win": {
"icon": "build/ico.png",
"target": [
"nsis",
"msi"
],
"requestedExecutionLevel": "",
"artifactName": "${productName}-portable.${ext}",
"executableName": "intersect-tool"
},
"linux": {
"icon": "build/ico.png",
"target": "AppImage",
"artifactName": "${productName}-Linux.${ext}",
"executableName": "intersect-tool",
"description": "Intersect Admin Tool for Intersect Engine",
"category": "Application"
},
"mac": {
"icon": "build/ico.png",
"target": "zip",
"category": "Application"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"perMachine": false,
"deleteAppDataOnUninstall": true,
"artifactName": "${productName}-Setup.${ext}"
},
"msi": {
"artifactName": "${productName}-msi.${ext}"
},
"appImage": {
"artifactName": "${productName}.${ext}"
},
"snap": {
"artifactName": "${productName}.${ext}"
},
"protocols": [
{
"name": "it",
"role": "Viewer",
"schemes": [
"it",
"its"
]
}
]
}
}