-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
79 lines (79 loc) · 2.42 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
{
"name": "@kava-labs/switch",
"version": "0.2.2",
"description": "Interledger wallet enabling lightning-fast crypto swaps and complete self-custody of assets",
"main": "background.js",
"scripts": {
"lint": "vue-cli-service lint",
"build": "vue-cli-service electron:build",
"release": "vue-cli-service electron:build --windows --mac --linux",
"serve": "vue-cli-service electron:serve",
"postinstall": "run-s electron:*",
"postuninstall": "npm run electron:install-app-deps",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"electron:install-app-deps": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kava-Labs/switch.git"
},
"keywords": [
"ilp",
"interledger",
"wallet",
"lightning",
"btc",
"ethereum",
"xrp",
"trade",
"exchange",
"streaming",
"micropayments"
],
"author": "Kava Labs <hello@kava.io> (https://kava.io/)",
"contributors": [
"Kincaid O'Neil <kincaid@kava.io> (https://kincaidoneil.com/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Kava-Labs/switch/issues"
},
"homepage": "https://github.com/Kava-Labs/switch#readme",
"dependencies": {
"@kava-labs/crypto-rate-utils": "^4.0.1",
"@kava-labs/switch-api": "^0.7.0",
"bignumber.js": "^7.2.1",
"debug": "^4.1.1",
"electron-better-ipc": "^0.3.0",
"electron-updater": "^4.0.6",
"material-components-vue": "^1.0.2",
"rxjs": "^6.5.2",
"symmetric-encrypt": "^1.0.0",
"vue": "^2.6.10",
"vuex": "^3.1.1",
"write-file-atomic": "^2.4.2"
},
"devDependencies": {
"@types/write-file-atomic": "^2.1.2",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-typescript": "^3.8.1",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"dotenv": "^8.0.0",
"electron": "^5.0.2",
"electron-icon-builder": "^1.0.0",
"electron-notarize": "^0.1.1",
"envkey": "^1.2.6",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.1.0",
"style-resources-loader": "^1.2.1",
"typescript": "^3.4.5",
"vue-cli-plugin-electron-builder": "^1.3.4",
"vue-cli-plugin-style-resources-loader": "^0.1.3",
"vue-template-compiler": "^2.6.10"
}
}