Skip to content

Commit

Permalink
chore: update package.json for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-AshishRanjan committed Jan 16, 2024
1 parent 07c981d commit 9759348
Show file tree
Hide file tree
Showing 8 changed files with 326 additions and 9 deletions.
12 changes: 12 additions & 0 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ module.exports = {
config: {},
},
],
publishers: [
{
name: "@electron-forge/publisher-github",
config: {
repository: {
owner: "dev-AshishRanjan",
name: "proxy-manager",
},
draft: true,
},
},
],
plugins: [
{
name: "@electron-forge/plugin-auto-unpack-natives",
Expand Down
240 changes: 240 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 35 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "proxy-manager",
"productName": "Proxy Manager",
"version": "1.0.0",
"description": "Proxy manager for pc",
"description": "Proxy manager for windows, linux, mac",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
Expand All @@ -29,6 +29,40 @@
"@electron-forge/maker-squirrel": "^7.2.0",
"@electron-forge/maker-zip": "^7.2.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.2.0",
"@electron-forge/publisher-github": "^7.2.0",
"electron": "^28.1.3"
},
"build": {
"appId": "com.my-website.proxy-manager",
"productName": "Proxy Manager",
"copyright": "Copyright © 2024 ${author}",
"mac": {
"icon": "./src/assets/icons/mac/icon_512.icns",
"category": "public.app-category.developer_tools",
"target": [
"dmg",
"mas",
"zip"
]
},
"win": {
"icon": "./src/assets/icons/win/icon_512.ico"
},
"files": [
"./build/**/*",
"./dist/**/*",
"./node_modules/**/*",
"./src/**/*",
"*.js"
],
"linux": {
"category": "Developer_tools"
},
"directories": {
"buildResources": "src/assets"
},
"dmg": {
"icon": false
}
}
}
Loading

0 comments on commit 9759348

Please sign in to comment.