-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
88 lines (88 loc) · 1.8 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
{
"build": {
"appId": "com.github.ivanrey.Frosch",
"productName": "Frosch",
"artifactName": "${productName}-${os}.${ext}",
"asar": false,
"copyright": "Copyright © 2018 ${author}",
"mac": {
"category": "public.app-category.games",
"icon": "icon.icns",
"target": "dmg"
},
"linux": {
"artifactName": "${productName}-${os}-${arch}.${ext}",
"target": {
"target": "zip",
"arch": [
"x64",
"ia32"
]
}
},
"nsis": {
"oneClick": false
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"directories": {
"app": "app",
"output": "dist"
},
"extraFiles": [
"node_modules/Frosch/frosch.min.js"
],
"files": [
"**/*"
],
"publish": [
{
"provider": "github"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/ivanrey/Frosch.git"
},
"name": "frosch",
"nodejs": true,
"description": "Frosch software para juego de rana electrónica",
"single-instance": true,
"keywords": [
"rana",
"electronica",
"juego"
],
"version": "1.4.4",
"main": "app/main.js",
"bugs": {
"url": "https://github.com/ivanrey/Frosch/issues"
},
"homepage": "https://github.com/ivanrey/Frosch",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish-dist": "electron-builder -lmw --publish always",
"postinstall": "electron-builder install-app-deps"
},
"author": "Ivan Rey",
"license": "MIT",
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^22.7.0"
},
"engines": {
"yarn": ">= 1.0.0"
}
}