-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.03 KB
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
{
"name": "zap-browser",
"version": "0.4.0-beta",
"description": "Privacy-first Bitcoin browser with Lightning, Liquid, Cashu and Nostr",
"main": "src/main/index.js",
"scripts": {
"start": "concurrently \"npm run dev:renderer\" \"wait-on http://localhost:3000 && electron .\"",
"dev:renderer": "vite --config src/renderer/vite.config.ts",
"build": "vite build --config src/renderer/vite.config.ts && electron-builder",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.zapbrowser.app",
"productName": "zap-browser",
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Network",
"icon": "assets/icons",
"maintainer": "Zap Browser Contributors <dev@zapbrowser.org>"
},
"mac": {
"target": "dmg"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "assets/icons/icon.ico"
},
"files": [
"src/main/**",
"src/preload/**",
"dist/**",
"assets/**"
],
"icon": "assets/icons/icon.png",
"executableName": "zap-browser",
"artifactName": "${productName}-${version}.${ext}"
},
"dependencies": {
"@cashu/cashu-ts": "^2.5.3",
"@noble/hashes": "^1.4.0",
"@noble/secp256k1": "^2.1.0",
"axios": "^1.16.0",
"better-sqlite3": "^9.4.3",
"bip39": "^3.1.0",
"electron-store": "^8.1.0",
"keytar": "^7.9.0",
"nostr-tools": "^1.17.0",
"qrcode.react": "^4.2.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"electron": "^30.0.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3",
"vite": "^5.4.0",
"wait-on": "^7.2.0",
"zustand": "^4.5.4"
},
"author": {
"name": "Zap Browser Contributors",
"email": "dev@zapbrowser.org"
}
}