-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.57 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
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
{
"name": "horanghill",
"version": "0.4.8",
"description": "#Best #Editor #Ever",
"homepage": "http://horanghill.great-site.net/",
"main": "js/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"dist": "electron-builder --linux --mac",
"buildwin": "electron-builder --win"
},
"repository": "https://github.com/HorangStudios/Editor",
"publish": [
{
"provider": "github",
"releaseType": "release"
},
{
"provider": "generic",
"url": "https://itch.io/api/1/upload?api_key=${ITCH_API_KEY}"
}
],
"author": "HorangStudios",
"license": "AGPL-3.0",
"devDependencies": {
"electron": "^4.2.12",
"electron-builder": "^20.44.4"
},
"build": {
"appId": "com.horanghill.beta",
"productName": "horanghill editor",
"win": {
"verifyUpdateCodeSignature": false,
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
],
"publisherName": "HorangStudios"
},
"linux": {
"target": [
"deb",
"AppImage",
"snap",
"rpm"
],
"maintainer": "HorangStudios",
"category": "Game"
},
"mac": {
"target": [
"zip",
"tar.gz"
],
"category": "public.app-category.games"
}
},
"dependencies": {
"electron-updater": "^5.3.0",
"jquery": "^3.6.3"
}
}