-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 2.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"main": "app/electron/main.js",
"description": "A graphical user interface to Card Creatr",
"scripts": {
"lint": "eslint --ext .js,.vue .",
"stylus": "stylus app/src/styl -w -o app/src/css",
"electron": "electron .",
"build-mac": "electron-builder -m",
"build-mac-linux": "electron-builder -ml --x64",
"build-windows": "electron-builder -w --x64",
"build-linux": "electron-builder -l --x64",
"build-all": "electron-builder -mwl --x64",
"start": "electron ."
},
"homepage": "https://cardcreatr.sffc.xyz/",
"license": "GPL-3.0",
"repository": "sffc/cc-studio",
"devDependencies": {
"electron": "^19",
"electron-builder": "^23",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.10.0",
"stylus": "^0.54.5"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"extendInfo": {
"CFBundleDocumentTypes": [
{
"CFBundleTypeExtensions": [
"ccsb"
],
"CFBundleTypeName": "ccstudio.ccsb",
"CFBundleTypeIconFiles": "ccsb.icns",
"CFBundleTypeRole": "Editor"
},
{
"CFBundleTypeExtensions": [
"ccst"
],
"CFBundleTypeName": "ccstudio.ccst",
"CFBundleTypeIconFiles": "ccst.icns",
"CFBundleTypeRole": "Editor"
}
]
},
"extraResource": [
"build/ccsb.icns",
"build/ccst.icns"
],
"build": {
"appId": "guru.shane.ccstudio",
"asar": true,
"asarUnpack": [
"node_modules/tmp",
"node_modules/os-tmpdir"
],
"mac": {
"category": "public.app-category.graphics-design"
},
"dmg": {
"title": "Card Creatr Studio",
"icon": "build/icon.icns",
"contents": [
{
"x": 398,
"y": 224,
"type": "link",
"path": "/Applications"
},
{
"x": 142,
"y": 224
}
]
},
"win": {
"certificateFile": "local/ShaneFCarr.p12",
"certificatePassword": "xChRd5dSEF5GCGuC"
},
"nsis": {
"perMachine": true,
"oneClick": false
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
]
},
"fileAssociations": [
{
"ext": "ccsb",
"name": "Card Creatr Studio Bundle",
"role": "Editor"
},
{
"ext": "ccst",
"name": "Card Creatr Studio Template",
"role": "Viewer"
}
]
}
}