-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.87 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
{
"name": "bingo-layout-generator",
"version": "1.0.3",
"description": "Gerador de Layouts de Antenas BINGO - Ferramenta para design, simulação e análise de arranjos de antenas para o projeto BINGO (Baryon Acoustic Oscillations from Integrated Neutral Gas Observations)",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --publish never",
"dist:win": "electron-builder --win --publish never",
"dist:mac": "electron-builder --mac --publish never",
"dist:linux": "electron-builder --linux --publish never"
},
"keywords": [
"bingo",
"antenna",
"layout",
"radio-astronomy",
"psf",
"beam-pattern",
"oskar",
"simulation"
],
"author": {
"name": "Geovanni Fernandes Garcia",
"url": "https://github.com/Geovannisz"
},
"license": "MIT",
"homepage": "https://geovannisz.github.io/LayoutGeneratorBINGO/",
"repository": {
"type": "git",
"url": "https://github.com/Geovannisz/LayoutGeneratorBINGO.git"
},
"bugs": {
"url": "https://github.com/Geovannisz/LayoutGeneratorBINGO/issues"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"electron-updater": "^6.1.1"
},
"devDependencies": {
"electron": "^25.0.0",
"electron-builder": "^24.0.0"
},
"build": {
"appId": "com.geovannisz.bingolayoutgenerator",
"productName": "BINGO Layout Generator",
"files": [
"**/*",
"!python/**",
"!*.md",
"!.editorconfig",
"!.gitignore"
],
"directories": {
"output": "release"
},
"publish": {
"provider": "github",
"owner": "Geovannisz",
"repo": "LayoutGeneratorBINGO"
},
"win": {
"target": ["nsis", "portable"],
"icon": "favicon.ico"
},
"mac": {
"target": ["dmg"]
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "favicon.ico"
}
}
}