mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-03-29 23:10:35 +00:00
Bumps [tar](https://github.com/isaacs/node-tar) to 7.5.9 and updates ancestor dependency [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder). These dependencies need to be updated together. Updates `tar` from 6.2.1 to 7.5.9 - [Release notes](https://github.com/isaacs/node-tar/releases) - [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md) - [Commits](https://github.com/isaacs/node-tar/compare/v6.2.1...v7.5.9) Updates `electron-builder` from 24.13.3 to 26.7.0 - [Release notes](https://github.com/electron-userland/electron-builder/releases) - [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md) - [Commits](https://github.com/electron-userland/electron-builder/commits/electron-builder@26.7.0/packages/electron-builder) --- updated-dependencies: - dependency-name: tar dependency-version: 7.5.9 dependency-type: indirect - dependency-name: electron-builder dependency-version: 26.7.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
101 lines
2.1 KiB
JSON
Vendored
101 lines
2.1 KiB
JSON
Vendored
{
|
|
"name": "new-api-electron",
|
|
"version": "1.0.0",
|
|
"description": "New API - AI Model Gateway Desktop Application",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start-app": "electron .",
|
|
"dev-app": "cross-env NODE_ENV=development electron .",
|
|
"build": "electron-builder",
|
|
"build:mac": "electron-builder --mac",
|
|
"build:win": "electron-builder --win",
|
|
"build:linux": "electron-builder --linux"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"api",
|
|
"gateway",
|
|
"openai",
|
|
"claude"
|
|
],
|
|
"author": "QuantumNous",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/QuantumNous/new-api"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^7.0.3",
|
|
"electron": "35.7.5",
|
|
"electron-builder": "^26.7.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.newapi.desktop",
|
|
"productName": "New-API-App",
|
|
"publish": null,
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"icon.png",
|
|
"tray-iconTemplate.png",
|
|
"tray-iconTemplate@2x.png",
|
|
"tray-icon-windows.png"
|
|
],
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools",
|
|
"icon": "icon.png",
|
|
"identity": null,
|
|
"hardenedRuntime": false,
|
|
"gatekeeperAssess": false,
|
|
"entitlements": "entitlements.mac.plist",
|
|
"entitlementsInherit": "entitlements.mac.plist",
|
|
"target": [
|
|
"dmg",
|
|
"zip"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "../new-api",
|
|
"to": "bin/new-api"
|
|
},
|
|
{
|
|
"from": "../web/dist",
|
|
"to": "web/dist"
|
|
}
|
|
]
|
|
},
|
|
"win": {
|
|
"icon": "icon.png",
|
|
"target": [
|
|
"nsis",
|
|
"portable"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "../new-api.exe",
|
|
"to": "bin/new-api.exe"
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"icon": "icon.png",
|
|
"target": [
|
|
"AppImage",
|
|
"deb"
|
|
],
|
|
"category": "Development",
|
|
"extraResources": [
|
|
{
|
|
"from": "../new-api",
|
|
"to": "bin/new-api"
|
|
}
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true
|
|
}
|
|
}
|
|
} |