-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "xapp-builder",
"productName": "xAppBuilder",
"description": "Build and debug your xApps for Xumm.",
"main": "main.js",
"version": "1.0.2",
"scripts": {
"start": "electron .",
"watch": "nodemon --exec electron .",
"build": "electron-builder -m",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.xrpllabs.xappbuilder",
"copyright": "XRPL Labs",
"buildVersion": "3",
"win": {
"target": [
"appx"
],
"icon": "build/icon.ico"
},
"appx": {
"identityName": "XRPLLabs.xAppBuilder",
"publisher": "CN=FC6EAEF1-08A6-4821-82F2-FE6531CD946E",
"publisherDisplayName": "XRPL Labs",
"displayName": "xAppBuilder"
},
"linux": {
"target": [
{
"target": "snap",
"arch": [
"x64",
"armv7l",
"arm64"
]
}
],
"icon": "build/icon.png"
},
"mac": {
"artifactName": "${name}-mac-${arch}-${version}.${ext}",
"electronLanguages": [
"en"
],
"extendInfo": {
"ITSAppUsesNonExemptEncryption": false,
"electronTeamId": "LK5BBJNJZ6"
},
"bundleVersion": "43",
"provisioningProfile": "xAppBuilder.provisionprofile",
"entitlements": "entitlement/entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"asarUnpack": "**/*.node",
"target": [
{
"target": "mas",
"arch": "universal"
}
]
},
"mas": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"provisioningProfile": "xAppBuilder.provisionprofile",
"entitlements": "entitlement/entitlements.mas.plist",
"entitlementsInherit": "entitlement/entitlements.mas.inherit.plist",
"entitlementsLoginHelper": "entitlement/entitlements.mas.loginhelper.plist",
"hardenedRuntime": false
}
},
"keywords": [
"xapp",
"builder",
"debugger",
"Xumm",
"XRPL"
],
"author": "XRPL Labs",
"license": "MIT",
"repository": "https://github.com/XRPL-Labs/xapp-builder",
"homepage": "https://github.com/XRPL-Labs/xapp-builder",
"dependencies": {
"electron-store": "^8.1.0",
"qrcode": "^1.5.1",
"xrpl-txdata": "^2.0.1"
},
"devDependencies": {
"electron": "^28.1.2",
"electron-builder": "^24.9.1",
"nodemon": "^2.0.21"
}
}