-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.52 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.52 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
{
"name": "gratech-commander",
"version": "1.0.0",
"description": "🚀 GraTech AI Commander - Your AI, Your Rules, Your Language",
"main": "main.js",
"homepage": "https://gratech.sa",
"repository": {
"type": "git",
"url": "https://github.com/GrAxOS/GraTechCommander.git"
},
"bugs": {
"url": "https://github.com/GrAxOS/GraTechCommander/issues"
},
"keywords": [
"ai",
"chatgpt",
"claude",
"deepseek",
"arabic",
"desktop-app",
"electron",
"azure",
"openai",
"saudi",
"rtl",
"privacy-first"
],
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:win": "electron-builder --win --x64",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"clean": "rimraf dist out",
"test": "echo \"No tests yet\" && exit 0"
},
"author": {
"name": "Suliman Nazal Alshammari",
"email": "admin@gratech.sa",
"url": "https://gratech.sa"
},
"contributors": [
{
"name": "GraTech Team",
"url": "https://github.com/GrAxOS"
}
],
"license": "MIT",
"devDependencies": {
"electron": "^35.7.5",
"electron-builder": "^24.9.1",
"rimraf": "^5.0.5"
},
"dependencies": {
"node-fetch": "^2.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"build": {
"appId": "sa.gratech.commander",
"productName": "GraTech Commander",
"copyright": "Copyright © 2025 GraTech",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"**/*",
"!**/*.md",
"!**/*.log",
"!.git/**",
"!.vscode/**"
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico",
"publisherName": "GraTech"
},
"mac": {
"target": ["dmg", "zip"],
"icon": "assets/icon.icns",
"category": "public.app-category.productivity"
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "assets/icon.png",
"category": "Utility"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "GraTech Commander"
}
}
}