-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.74 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.74 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
107
108
109
110
111
112
{
"name": "taskify-business",
"version": "1.11.0",
"description": "An app for Professionals Companies with better management of Maintenance Tasks",
"license": "Apache",
"repository": {
"type": "git",
"url": "https://github.com/Andrea-Filice/Taskify-Business"
},
"author": {
"name": "Play Epik, Incoporation",
"email": "help.playepik@gmail.com",
"url": "https://play-epik-incorporation.netlify.app/developers#taskifyBusiness"
},
"type": "commonjs",
"main": "config.js",
"scripts": {
"start": "electron .",
"dev": "npm run start -- --dev",
"build": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.playepik.taskifybusiness",
"productName": "Taskify Business",
"win": {
"icon": "src/assets/icon.ico",
"target": "nsis",
"artifactName": "TaskifyBusiness-${version}-${arch}.${ext}"
},
"linux": {
"icon": "src/assets/_icon.png",
"target": [
"AppImage",
"deb"
],
"artifactName": "TaskifyBusiness-${version}-${arch}.${ext}",
"category": "Utility"
},
"mac": {
"appId": "com.playepik.taskifybusiness",
"icon": "build/_icon.icns",
"target": [
"dmg"
],
"artifactName": "TaskifyBusiness-${version}.${ext}"
},
"dmg": {
"background": "build/bg.png",
"icon": "build/_icon.icns",
"title": "Install Taskify ${version}",
"window": {
"width": 600,
"height": 400
},
"contents": [
{
"x": 130,
"y": 220,
"type": "file"
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"nsis": {
"oneClick": false,
"installerIcon": "src/assets/icon_installer.ico",
"uninstallerIcon": "src/assets/icon_installer.ico",
"uninstallDisplayName": "Taskify Business",
"allowToChangeInstallationDirectory": true
},
"asarUnpack": [
"src/ai"
]
},
"files": [
"src/**/*",
"src/ai/**/*",
"src/js/**/*",
"src/css/**/*",
"src/assets/**/*",
"src/locales/**/*",
"src/*.html",
"src/version.json",
"config.js",
"main.js",
"package.json"
],
"devDependencies": {
"electron": "^40.6.1",
"electron-builder": "^26.8.1"
},
"dependencies": {
"@supabase/supabase-js": "^2.98.0",
"chart.js": "^4.5.1",
"dotenv": "^17.3.1",
"electron-progressbar": "^2.2.1",
"follow-redirects": "^1.15.11",
"glob": "^13.0.6",
"i18next": "^25.8.13",
"i18next-electron-fs-backend": "^3.0.3",
"i18next-fs-backend": "^2.6.1",
"js-yaml": "^4.1.1",
"npm": "^11.11.0",
"semver": "^7.7.4"
}
}