forked from bitshares/beet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.54 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "beet",
"productName": "BeetEOS Blockchain Companion",
"version": "0.0.1",
"apiversion": 3,
"description": "BeetEOS is a stand-alone key-manager and signing app for EOS based blockchains.",
"author": "BeetEOS team <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/beetapp/beeteos",
"repository": "github:beetapp/beeteos",
"main": "app/background.js",
"browser": {
"app": "app/app.js",
"modal": "app/modal.js",
"receipt": "app/receipt.js"
},
"build": {
"appId": "io.get-beet.beet",
"productName": "BeetEOS Blockchain Companion",
"artifactName": "BeetEOSSetup.${ext}",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "resources"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"target": "nsis"
},
"linux": {
"category": "Utility",
"target": ["deb", "AppImage"],
"mimeTypes": [
"x-scheme-handler/rawbeeteos",
"x-scheme-handler/beeteos"
],
"desktop": {
"exec": "beeteos %U"
}
}
},
"scripts": {
"start": "node build/start.js",
"compile": "webpack --config=build/webpack.main.config.js --config=build/webpack.renderer.config.js --config=build/webpack.preload.config.js --env=production",
"build": "npm run compile && electron-builder --publish never",
"release": "npm run compile && electron-builder --publish never",
"dist:macos-latest": "npm run-script compile && electron-builder -m --publish never",
"dist:windows-latest": "npm run-script compile && electron-builder -w --publish never",
"dist:ubuntu-latest": "npm run-script compile && electron-builder -l --publish never",
"lint": "npm run-script eslint --ext .js,.vue src",
"lintFix": "npm run-script eslint --ext .js,.vue src --fix"
},
"dependencies": {
"@babel/runtime": "^7.24.5",
"@noble/ed25519": "^1.6.1",
"@noble/secp256k1": "^1.6.3",
"balm-ui": "^10.28.2",
"bitsharesjs": "https://github.com/bitshares/bitsharesjs#develop",
"crypto-js": "^4.2.0",
"dexie": "^3.2.6",
"electron-devtools-installer": "^3.2.0",
"eosjs": "^22.1.0",
"eosjs-ecc": "^4.0.7",
"http-terminator": "^3.2.0",
"lzma": "^2.3.2",
"mitt": "^3.0.1",
"otpauth": "^9.2.4",
"query-string": "^9.0.0",
"simple-websocket": "^9.1.0",
"socket.io": "^4.7.5",
"typeface-rajdhani": "1.1.13",
"typeface-roboto": "1.1.13",
"uuid": "^9.0.1",
"vue": "^3.4.27",
"vue-i18n": "9",
"vue-qrcode-reader": "^5.5.4",
"vue-router": "^4.3.2",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"electron": "^30.0.3",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"file-loader": "^6.2.0",
"sass": "^1.77.0",
"sass-loader": "^14.2.1",
"source-map-support": "^0.5.21",
"style-loader": "^3.3.4",
"vue-loader": "^17.4.2",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-node-externals": "^3.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
}
}