-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.52 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
{
"name": "modrinth-randomizer",
"productName": "Modrinth Randomizer",
"version": "1.0.0",
"description": "Random content picker from Modrinth with filters",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux"
},
"keywords": [
"modrinth",
"minecraft",
"mods",
"randomizer"
],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.modrinth.randomizer",
"productName": "Modrinth Randomizer",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules/**/*",
"node_modules/electron/**/*"
],
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"mac": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.utilities"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
}
],
"category": "Utility"
}
}
}