-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.7 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.7 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
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
122
123
124
{
"name": "branta",
"productName": "Branta",
"version": "0.10.2",
"main": "build/app/main.js",
"author": "Branta LLC",
"description": "Verify your bitcoin payments.",
"scripts": {
"ng": "ng",
"ng:serve": "ng serve",
"build": "npm run build:app && npm run build:prod",
"build:app": "tsc -p tsconfig.app.json && cp-cli resources build/app/resources",
"build:prod": "ng build --base-href ./ --configuration=production",
"start": "npm run build:app && run-script-os",
"start:win32": "SET APP_DEV=true && electron-forge start",
"start:macos": "APP_DEV=true && electron-forge start",
"start:default": "APP_DEV=true ELECTRON_DISABLE_SANDBOX=1 electron-forge start",
"package": "electron-forge package",
"make": "npm run build && electron-forge make",
"snap": "npm run build && electron-builder --linux snap",
"test:watch": "jest --watch",
"test": "jest",
"lint": "ng lint"
},
"build": {
"appId": "pro.branta",
"mac": {
"target": [
"pkg"
],
"category": "public.app-category.utilities"
},
"linux": {
"category": "Utility",
"icon": "./resources/icon.png",
"extraResources": [
{
"from": "./resources/icon.png",
"to": "icon.png"
}
]
},
"files": [
"app.js",
"preload.js",
"splash.html",
"./lib/**/*",
"./resources/**/*",
"./dist/branta/browser/**/*"
],
"directories": {
"buildResources": "public"
},
"prune": true
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.17",
"@angular/cdk": "^19.2.17",
"@angular/common": "^19.2.17",
"@angular/compiler": "^19.2.17",
"@angular/core": "^19.2.17",
"@angular/forms": "^19.2.17",
"@angular/material": "^19.2.17",
"@angular/platform-browser": "^19.2.17",
"@angular/platform-browser-dynamic": "^19.2.17",
"@angular/router": "^19.2.17",
"auto-launch": "^5.0.6",
"bip32": "^4.0.0",
"bip84": "^0.2.9",
"bitcoinjs-lib": "^6.1.7",
"bolt11": "^1.4.1",
"date-fns": "^4.1.0",
"ngx-toastr": "^19.0.0",
"rxjs": "~7.8.0",
"tiny-secp256k1": "^2.2.3",
"tslib": "^2.3.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.17",
"@angular-eslint/builder": "18.4.3",
"@angular-eslint/eslint-plugin": "18.4.3",
"@angular-eslint/eslint-plugin-template": "18.4.3",
"@angular-eslint/schematics": "18.4.3",
"@angular-eslint/template-parser": "18.4.3",
"@angular/cli": "^19.2.17",
"@angular/compiler-cli": "^19.2.17",
"@angular/language-server": "^19.1.0",
"@angular/language-service": "^19.2.17",
"@electron-forge/cli": "^7.7.0",
"@electron-forge/maker-deb": "^7.7.0",
"@electron-forge/maker-dmg": "^7.7.0",
"@electron-forge/maker-pkg": "^7.7.0",
"@electron-forge/maker-rpm": "^7.7.0",
"@electron-forge/maker-zip": "^7.7.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.7.0",
"@electron-forge/plugin-fuses": "^7.7.0",
"@electron/fuses": "^1.8.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"cp-cli": "^2.0.0",
"electron": "^31.7.7",
"electron-builder": "^24.13.3",
"eslint": "^8.57.1",
"jasmine-core": "~5.1.0",
"jest": "^29.7.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"run-script-os": "^1.1.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vite-plugin-wasm": "^3.4.1"
}
}