-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 4.15 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
{
"appId": "com.electron.aesir",
"name": "Aesir",
"productName": "Aesir",
"author": "Kryptokrona Developers <[email protected]>",
"email": "[email protected]",
"version": "1.0.5",
"private": true,
"description": "a wallet for Kryptokrona",
"repository": "https://github.com/kryptokrona/aesir-wallet",
"main": "src/backend/electron.cjs",
"type": "module",
"npmRebuild": false,
"scripts": {
"dev": "cross-env NODE_ENV=dev npm run dev:all",
"dev:all": "concurrently -n=svelte,electron -c='#ff3e00',blue \"npm run dev:svelte\" \"npm run dev:electron\"",
"dev:svelte": "vite dev",
"dev:electron": "electron src/backend/electron.cjs",
"build": "cross-env NODE_ENV=production npm run build:svelte && npm run build:electron",
"postinstall": "patch-package && electron-rebuild",
"build:svelte": "vite build",
"build:electron": "electron-builder -mwl --config build.config.json",
"build:win-x64": "cross-env NODE_ENV=production vite build && electron-builder --win --x64 --config build.config.json -p always",
"build:mac-arm64": "cross-env NODE_ENV=production vite build && electron-builder --mac --arm64 --config build.config.json -p always",
"build:mac-x64": "cross-env NODE_ENV=production vite build && electron-builder --mac --x64 --config build.config.json -p always",
"build:linux-x64": "cross-env NODE_ENV=production vite build && electron-builder --linux --x64 --config build.config.json -p always",
"publish:mac-intel": "cross-env NODE_ENV=production vite build && electron-builder --mac --x64 --config build.config.json -p always"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "kryptokrona",
"repo": "aesir-wallet"
}
],
"mac": {
"asarUnpack": "./node_modules/node-notifier/vendor/**"
}
},
"browserslist": [
"Chrome 89"
],
"dependencies": {
"@commonify/lowdb": "^3.0.0",
"@electron/notarize": "2.2.0",
"@inlang/paraglide-sveltekit": "0.9.6",
"@koush/wrtc": "^0.5.3",
"apexcharts": "^3.38.0",
"cross-fetch": "^3.1.5",
"electron-context-menu": "^3.6.1",
"electron-reloader": "^1.2.3",
"electron-serve": "1.3.0",
"electron-store": "8.2.0",
"electron-updater": "^5.3.0",
"electron-window-state": "^5.0.3",
"file-saver": "^2.0.5",
"hyperswarm": "^4.7.7",
"keytar": "^7.9.0",
"kryptokrona-crypto": "^1.0.3",
"kryptokrona-wallet-backend-js": "^2.5.6",
"lightweight-charts": "^4.1.1",
"ndjson": "^2.0.0",
"node-notifier": "^10.0.1",
"patch-package": "^6.5.0",
"sanitize-html": "^2.7.3",
"simple-peer": "^9.11.1",
"sound-play": "^1.1.0",
"svelte-french-toast": "^1.0.3",
"svelte-loading-spinners": "^0.3.4",
"svelte-spark": "^1.0.4",
"svelte-time": "^0.7.1"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "10.4.19",
"concurrently": "8.2.2",
"cross-env": "^7.0.3",
"dotenv": "16.4.5",
"electron": "30.0.2",
"electron-builder": "24.13.3",
"electron-connect": "^0.6.3",
"electron-packager": "17.1.2",
"electron-rebuild": "^3.2.9",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.39.0",
"npm-run-all": "^4.1.5",
"postcss": "8.4.38",
"postcss-load-config": "5.1.0",
"prettier": "3.2.5",
"prettier-plugin-svelte": "3.2.3",
"sass": "^1.56.0",
"svelte": "4.2.17",
"svelte-check": "3.7.1",
"svelte-preprocess": "5.1.4",
"tailwindcss": "3.4.3",
"tslib": "2.6.2",
"typescript": "5.4.5",
"vite": "^5.2.13"
},
"overrides": {
"electron": {
"got": "^12.5.1"
}
}
}