-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "station-electron",
"version": "1.2.0",
"description": "Wallet for Terra Blockchain",
"author": "Terraform Labs Pte. Ltd. <[email protected]> (https://terra.money)",
"license": "MIT",
"main": "public/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/terra-money/station-desktop.git"
},
"dependencies": {
"bech32": "^2.0.0",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"electron-debug": "^3.2.0",
"secp256k1": "^4.0.3"
},
"devDependencies": {
"@types/secp256k1": "^4.0.1",
"electron": "^16.0.7",
"electron-builder": "^22",
"prettier": "^2.0.5"
},
"scripts": {
"start": "electron .",
"build-linux": "electron-builder -l --config build-linux.json",
"build-macwin": "electron-builder -mw --config build-macwin.json",
"postinstall": "electron-builder install-app-deps",
"prettier": "prettier --write public/**/*.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"semi": false
}
}