-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.65 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
{
"name": "camo-banano-light-wallet",
"version": "1.3.13",
"description": "camo banano light wallet",
"productName": "camo-banano-light-wallet",
"main": "index.js",
"build": {
"mac": {
"target": [
"dmg"
],
"hardenedRuntime": true
},
"linux": {
"target": [
"AppImage"
],
"category": "Utility"
}
},
"scripts": {
"start": "check-node-version --node 20 --npm 10 && electron . --enable-logging --remote-debugging-port=9222",
"test": "check-node-version --node 20 --npm 10 && ./node_modules/mocha/bin/mocha --timeout 100000 test",
"eslint": "eslint --fix 'scripts/**/*.js'",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl",
"dist-mac": "electron-builder -m",
"dist-win": "electron-builder -w",
"dist-linux": "electron-builder -l",
"npm-check-updates-all": "npm-check-updates -u",
"npm-check-updates": "npm-check-updates --target minor -u",
"postinstall": "electron-builder install-app-deps",
"publish": "electron-forge publish",
"preflight": "npm update && npm run npm-check-updates && npm i && npm audit fix && npm run eslint && npm run prettier && npm outdated",
"prettier": "prettier \"**/**.{ts,json,css,scss,html,jsx,md}\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BananoCoin/camo-banano-light-wallet.git"
},
"keywords": [
"camo banano wallet"
],
"author": "coranos",
"license": "MIT",
"bugs": {
"url": "https://github.com/BananoCoin/camo-banano-light-wallet/issues"
},
"homepage": "https://github.com/BananoCoin/camo-banano-light-wallet#readme",
"dependencies": {
"@bananocoin/bananojs": "^2.10.8",
"@bananocoin/bananojs-hw": "^1.5.15",
"@electron/remote": "^2.1.2",
"babel-polyfill": "^6.26.0",
"check-node-version": "^4.2.1",
"electron-store": "^9.0.0",
"elliptic": "^6.5.5",
"exceljs": "^4.4.0",
"https-rate-limit": "^1.0.13",
"node-hid": "^3.0.0",
"node-jsx": "^0.13.3",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.3.1",
"regenerator-runtime": "^0.14.1",
"semver": "^7.6.0",
"smart-buffer": "^4.2.0"
},
"devDependencies": {
"@electron-forge/publisher-github": "^7.4.0",
"@electron/get": "^3.0.0",
"chai": "^5.1.0",
"electron": "^30.0.2",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.4.0",
"npm-check-updates": "^16.14.20",
"prettier": "^3.2.5"
},
"!overrides": {
"node-hid": "^2.1.2"
},
"overrides": {
"dir-compare": "latest"
}
}