mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-03 20:59:41 +08:00
41 lines
800 B
JSON
Executable File
41 lines
800 B
JSON
Executable File
{
|
|
"name": "chatgpt-plus-desktop",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"package": "electron-builder",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"build": {
|
|
"appId": "ai.r9it.com",
|
|
"productName": "ChatGPT-Plus",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"package.json"
|
|
],
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"icon": "icons/logo.png"
|
|
},
|
|
"mac": {
|
|
"target": "dmg",
|
|
"icon": "icons/logo.icns"
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "icons/logo.ico"
|
|
}
|
|
},
|
|
"author": "geekmaster",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"electron": "^26.1.0",
|
|
"electron-builder": "^24.6.4"
|
|
}
|
|
}
|