-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.48 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
{
"name": "private-qrcode",
"version": "0.1.1",
"description": "store your secret strings encrypted and printed in qrcode format, use this tool to open and generate private qrcode",
"scripts": {
"start": "npm run dev",
"dev": "ng serve --host=0.0.0.0",
"build": "sh ./build.sh",
"lint": "ng lint",
"lint:sass": "sass-lint -c ./.sass-lint.yml -v -q",
"waydroid": "waydroid app install ./dist/app-debug.apk"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/antonioconselheiro/private-qrcode.git"
},
"keywords": [
"private",
"qrcode",
"encrypted",
"nsec",
"nostr",
"mnemonic",
"secure"
],
"author": "António Conselheiro",
"license": "Ungovernable",
"bugs": {
"url": "https://github.com/antonioconselheiro/private-qrcode/issues"
},
"homepage": "https://github.com/antonioconselheiro/private-qrcode#readme",
"dependencies": {
"@angular/animations": "^18.2.6",
"@angular/common": "^18.2.6",
"@angular/compiler": "^18.2.6",
"@angular/core": "^18.2.6",
"@angular/forms": "^18.2.6",
"@angular/platform-browser": "^18.2.6",
"@angular/platform-browser-dynamic": "^18.2.6",
"@angular/router": "^18.2.6",
"@angular/service-worker": "^18.2.6",
"@belomonte/async-modal-ngx": "^1.0.0",
"@capacitor/android": "^5.7.5",
"@capacitor/cli": "^5.7.5",
"@capacitor/core": "^5.7.5",
"@capacitor/filesystem": "^5.2.1",
"@capacitor/share": "^5.0.7",
"@capawesome/capacitor-file-picker": "^5.3.0",
"@encrypted-uri/ciphers": "^1.1.5",
"@encrypted-uri/core": "^1.1.2",
"@noble/ciphers": "^0.5.2",
"angular-tabler-icons": "^2.46.0",
"crypto-js": "^4.1.1",
"ngx-toastr": "^19.0.0",
"nostr-tools": "^2.7.2",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.6",
"@angular/cli": "~18.2.6",
"@angular/compiler-cli": "^18.2.6",
"@capacitor/assets": "^3.0.5",
"@types/crypto-js": "^4.1.3",
"@types/jasmine": "~4.3.0",
"@types/qrcode": "^1.5.4",
"jasmine-core": "~4.6.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",
"typescript": "^5.5.4"
},
"overrides": {
"angular-tabler-icons": {
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0"
}
}
}