-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.61 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": "ZerofAI",
"version": "3.0.4",
"description": "AI chatbot for commercial use only.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron",
"build": "electron-builder",
"watch": "nodemon --exec electron ."
},
"repository": {
"type": "git",
"url": "https://github.com/DeekshaKhattar/zerofai-auto-update.git"
},
"publish": {
"provider": "github",
"releaseType": "release"
},
"build": {
"appId": "ZerofAI",
"productName": "ZerofAI",
"buildNumber": "3.0.4",
"buildVersion": "3.0.4",
"win": {
"icon": "images/chatbot.png",
"legalTrademarks": "(c) 2023 www.tcpl.com",
"publisherName": "Team Computers Pvt.Ltd.",
"target": "nsis",
"requestedExecutionLevel": "requireAdministrator",
"certificateFile": "certs/zerofai-dev.pfx",
"certificatePassword": "Diksha@123",
"verifyUpdateCodeSignature": false
},
"directories": {
"output": "dist"
},
"files": [
"**/*",
"build/**/*"
],
"extraResources": [
{
"from": "build",
"to": ".",
"filter": [
"**/*"
]
},
{
"from": "build/post-update.bat",
"to": "."
}
],
"publish": {
"provider": "github",
"owner": "DeekshaKhattar",
"repo": "zerofai-auto-update",
"releaseType": "release",
"publishAutoUpdate": true
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": true,
"allowElevation": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"runAfterFinish": true,
"include": "installer.nsi"
}
},
"author": "TCPL",
"license": "ISC",
"devDependencies": {
"electron": "^26.2.2",
"electron-builder": "^24.13.3",
"electron-debug": "^4.1.0",
"nodemon": "^2.0.19"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"active-window": "^0.1.0",
"auto-launch": "^5.0.6",
"axios": "^1.5.0",
"bootstrap": "^5.3.2",
"dotenv": "^16.4.7",
"electron-dl": "^3.5.0",
"electron-log": "^5.1.4",
"electron-squirrel-startup": "^1.0.1",
"electron-sudo": "^4.0.12",
"electron-tray": "^0.1.1",
"electron-updater": "^6.3.9",
"ldapjs": "^3.0.7",
"moment": "^2.30.1",
"node-cron": "^3.0.4",
"node-schedule": "^2.1.1",
"node-windows": "^1.0.0-beta.8",
"qs": "^6.11.2",
"schtasks": "^1.0.0",
"sudo-prompt": "^9.2.1",
"toastify-js": "^1.12.0",
"windows": "^0.1.2",
"winreg": "^1.2.4"
}
}