This repository was archived by the owner on Mar 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.2 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
{
"name": "bounce-application",
"productName": "bounce-application",
"version": "1.1.3",
"description": "My Electron application description",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\""
},
"keywords": [],
"author": "Joshua Pemberton <joshp2865@gmail.com>",
"license": "MIT",
"config": {
"forge": {
"publishers": [
{
"name": "@electron-forge/publisher-github",
"config": {
"repository": {
"owner": "AthrCC",
"name": "bounce-application"
},
"prelease": true,
"draft": true
}
}
],
"packagerConfig": {
"name": "Bounce",
"icon": "src/imgs/logo"
},
"makers": [
{
"name": "@electron-forge/maker-zip"
},
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "bounce_application"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"icon": "src/imgs/logo.icns"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"dependencies": {
"discord-rich-presence": "^0.0.8",
"electron-squirrel-startup": "^1.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.65",
"@electron-forge/maker-deb": "^6.0.0-beta.65",
"@electron-forge/maker-dmg": "^6.0.0-beta.65",
"@electron-forge/maker-rpm": "^6.0.0-beta.65",
"@electron-forge/maker-squirrel": "^6.0.0-beta.65",
"@electron-forge/maker-zip": "^6.0.0-beta.65",
"@electron-forge/publisher-github": "^6.0.0-beta.65",
"electron": "20.0.2",
"electron-winstaller": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AthrCC/bounce-application.git"
},
"bugs": {
"url": "https://github.com/AthrCC/bounce-application/issues"
},
"homepage": "https://github.com/AthrCC/bounce-application#readme"
}