-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "anon-browser",
"productName": "Anon",
"version": "0.3.0",
"description": "Anon Browser — privacy browser with a built-in Bitcoin Vault",
"main": "src/main.js",
"author": "Anon Computer, Inc.",
"license": "MIT",
"scripts": {
"brand": "node scripts/brand-electron-app.js",
"prestart": "node scripts/brand-electron-app.js",
"start": "env -u ELECTRON_RUN_AS_NODE electron .",
"dev": "env -u ELECTRON_RUN_AS_NODE electron . --dev",
"pack": "env -u ELECTRON_RUN_AS_NODE electron-builder --dir",
"dist": "env -u ELECTRON_RUN_AS_NODE electron-builder --mac dmg",
"test": "node --test test/*.test.js"
},
"engines": {
"node": ">=20"
},
"build": {
"appId": "computer.anon.browser",
"productName": "Anon",
"directories": {
"output": "dist"
},
"files": [
"src/**",
"renderer/**",
"privacy/**",
"vault/**",
"brand/icon.png",
"brand/icon.icns",
"brand/fonts/**",
"package.json"
],
"mac": {
"icon": "brand/icon.icns",
"category": "public.app-category.productivity",
"identity": null
},
"dmg": {
"title": "Anon"
}
},
"dependencies": {
"@ghostery/adblocker": "^2.18.1",
"@scure/base": "^2.0.0",
"@scure/bip32": "^2.2.0",
"@scure/bip39": "^2.2.0",
"@scure/btc-signer": "^2.2.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"electron": "^35.7.5",
"electron-builder": "^26.15.3"
}
}