-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.88 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
{
"name": "reporting",
"version": "1.0.0",
"description": "Creating reporting files for submission at https://portal.exemptliquiditymarket.exchange",
"main": "index.js",
"build": {
"appId": "exchange.exemptliquiditymarket.reporting",
"buildVersion": "1",
"productName": "Exempt Liquidity Market Exchange Reporting",
"copyright": "Copyright © 2023 ${author}",
"win": {
"icon": "./assets/logo.ico",
"target": [
"nsis",
"appx"
]
},
"linux": {
"target": "deb",
"icon": "./assets/logo.png",
"category": "Financial",
"synopsis": "Exempt Liquidity Market Exchange Reporting"
},
"mac": {
"category": "public.app-category.finance",
"icon": "./assets/logo.icns"
},
"dmg": {
"title": "${productName}_${version}",
"icon": "./assets/logo.icns",
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"files": [],
"extraFiles": []
},
"scripts": {
"start": "electron index.js",
"dist:mac": "electron-builder --mac --universal",
"dist:win": "electron-builder --win --universal",
"dist:snap": "snapcraft remote-build --build-on=amd64,arm64",
"png2icns": "./icns_creator.sh ./assets/logo.png ./assets/logo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redeecash/exchange.data"
},
"keywords": [],
"author": "PRESSPAGE ENTERTAINMENT INC dba PINGLEWARE <[email protected]>",
"license": "BSL-1.1",
"bugs": {
"url": "https://pingleware.support"
},
"homepage": "https://github.com/redeecash/exchange.data#readme",
"dependencies": {
"jsontoxml": "^1.0.1"
},
"devDependencies": {
"electron": "^26.1.0",
"electron-builder": "^24.6.3"
}
}