-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.76 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.76 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
84
85
86
87
88
{
"name": "deckmaster",
"version": "1.0.2",
"description": "A Yu-Gi-Oh! TCG deck editor",
"main": "index.js",
"scripts": {
"dev": "electron ./dev.js",
"start": "electron .",
"build": "electron-builder",
"deploy-docs": "mkdocs gh-deploy",
"docs": "mkdocs serve"
},
"build": {
"productName": "DeckMaster",
"appId": "dev.theotterlord.deckmaster",
"artifactName": "installer.${ext}",
"directories": {
"output": "build"
},
"files": [
"index.js",
"index.html",
"bg.png",
"css/",
"js/",
"assets/"
],
"win": {
"icon": "favicon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"icon": "icon.svg",
"artifactName": "linux-installer.${ext}",
"target": [
"deb",
"rpm",
"appImage"
],
"category": "Editor"
},
"fileAssociations": [
{
"ext": "ydk",
"name": "Yu-Gi-Oh! deck",
"role": "Editor"
},
{
"ext": "ycb",
"name": "Yu-Gi-Oh! combo",
"role": "Editor"
}
]
},
"homepage": "https://theotterlord.github.io/deckmaster",
"author": {
"name": "The Otterlord",
"email": "theotterlord@nowhere.void",
"url": "https://github.com/TheOtterlord"
},
"repository": {
"type": "git",
"url": "https://github.com/TheOtterlord/deckmaster"
},
"keywords": [
"Yu-Gi-Oh!",
"Editor",
"TCG"
],
"license": "MIT",
"dependencies": {
"discord-rpc": "^3.1.4",
"electron-updater": "^4.0.0"
},
"devDependencies": {
"electron": "^11.2.1",
"electron-builder": "latest",
"electron-reload": "^1.5.0"
}
}