This repository has been archived by the owner on Aug 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.testnet.json
121 lines (121 loc) · 3.27 KB
/
package.testnet.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
115
116
117
118
119
120
121
{
"name": "tADK",
"productName": "tADK",
"description": "Aidos Wallet Testnet",
"version": "2.1.1",
"license": "GPL-3.0",
"main": "app/js/main.js",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "export NODE_ENV=development || set NODE_ENV=development && postcss tailwind.css -o app/ui/css/global.css && electron .",
"build:css": "cross-env NODE_ENV=production postcss tailwind.css -o app/ui/css/global.css",
"precompile": "rimraf out/*",
"compile": "electron-builder build --win --mac --linux --x64 --ia32",
"compile:lin": "yarn build:css && electron-builder build --linux --x64 --ia32",
"compile:mac": "yarn build:css && electron-builder build --mac --x64",
"compile:win": "yarn build:css && electron-builder build --win --x64 --ia32",
"prepublish": "rimraf out/*",
"publish": "electron-builder build --win --mac --linux --x64 --ia32 --publish always",
"publish:lin": "yarn build:css && electron-builder build --linux --x64 --ia32 --publish always",
"publish:mac": "yarn build:css && electron-builder build --mac --x64 --publish always",
"publish:win": "yarn build:css && electron-builder build --win --x64 --ia32 --publish always"
},
"author": "Aidos Kuneen <[email protected]>",
"homepage": "http://aidoskuneen.com",
"repository": {
"type": "git",
"url": "https://github.com/AidosKuneen/aidos-wallet"
},
"dependencies": {
"crypto-random-string": "^3.3.0",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"ffi-napi": "^3.0.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"keytar": "^7.0.0",
"pidusage": "^2.0.21"
},
"devDependencies": {
"autoprefixer": "^10.0.1",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"electron": "^11.2.3",
"electron-builder": "^22.8.0",
"electron-icon-maker": "^0.0.5",
"electron-notarize": "^1.0.0",
"postcss": "^8.1.0",
"postcss-cli": "^8.0.0",
"rimraf": "^3.0.2",
"tailwindcss": "^1.9.6"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "AidosKuneen",
"repo": "aidos-wallet"
}
],
"files": [
"app/**/*",
"build/**/*"
],
"directories": {
"buildResources": "build",
"output": "out"
},
"appId": "com.aidoskuneen.wallet",
"extraResources": [
"ccurl/**/*"
],
"protocols": [
{
"name": "Aidos URL Scheme",
"schemes": [
"adk"
]
}
],
"nodeGypRebuild": false,
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"iconSize": 125,
"contents": [
{
"x": 235,
"y": 290,
"type": "link",
"path": "/Applications"
},
{
"x": 235,
"y": 20,
"type": "file"
}
]
},
"win": {
"publisherName": "NIXIQ DMCC LLC",
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"tar.gz",
"rpm",
"deb"
],
"category": "Utility"
},
"afterSign": "scripts/notarize.js"
}
}