feat(core): update session, security system and QR exchange

- Removed session creation and Lightning payment logic
- Refactored security system:
  * no more restrictions
  * all systems enabled on session creation
- Improved QR code exchange for mobile devices
This commit is contained in:
lockbitchat
2025-09-23 20:01:02 -04:00
parent 804b384271
commit 34094956b7
396 changed files with 126516 additions and 11881 deletions

59
node_modules/qr-scanner/package.json generated vendored Normal file
View File

@@ -0,0 +1,59 @@
{
"name": "qr-scanner",
"version": "1.4.2",
"description": "A javascript QR scanner library",
"main": "qr-scanner.umd.min.js",
"module": "qr-scanner.min.js",
"types": "types/qr-scanner.d.ts",
"files": [
"LICENSE",
"qr-scanner.min.js",
"qr-scanner.min.js.map",
"qr-scanner.umd.min.js",
"qr-scanner.umd.min.js.map",
"qr-scanner.legacy.min.js",
"qr-scanner.legacy.min.js.map",
"qr-scanner-worker.min.js",
"qr-scanner-worker.min.js.map",
"types/qr-scanner.d.ts"
],
"scripts": {
"build": "rollup --config && tsc src/qr-scanner.ts --target esnext --module esnext --declaration --declarationDir types --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nimiq/qr-scanner.git"
},
"keywords": [
"qr",
"scanner",
"reader",
"js",
"javascript",
"lightweight",
"small",
"fast",
"web"
],
"author": "Nimiq (https://nimiq.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nimiq/qr-scanner/issues"
},
"homepage": "https://github.com/nimiq/qr-scanner#readme",
"dependencies": {
"@types/offscreencanvas": "^2019.6.4"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-typescript": "^8.3.0",
"acorn": "^8.7.0",
"google-closure-compiler": "^20220104.0.0",
"jsqr-es6": "^1.4.0-1",
"rollup": "^2.21.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}