-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "ai-gate",
"productName": "AI Gate",
"version": "3.0.0",
"main": "main.bundle.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"obfuscate": "webpack --config webpack.config.js"
},
"repository": "https://github.com/inulute/ai-gate",
"author": "inulute",
"license": "GPL-3.0-only",
"description": "Access AI tools seamlessly using AI Gate",
"devDependencies": {
"electron": "^33.0.2",
"electron-builder": "^24.13.3",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-obfuscator": "^3.5.1"
},
"build": {
"appId": "com.inulute.aigate",
"productName": "Inulute AI Gate",
"directories": {
"output": "release-builds"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "/icons/mac/favicon.icns"
},
"win": {
"target": "nsis",
"icon": "/icons/win/favicon.ico"
},
"linux": {
"target": "AppImage",
"icon": "/icons/png/favicon.png",
"category": "Utility"
}
},
"dependencies": {
"path-browserify": "^1.0.1"
}
}