Files
crowetic 6d9cf4449f - Added create wallet and export wallet functionality (tested export and import to Qortal Hub, functions as expected.)
- Added optional 'encryption at rest' for stored backup json files. With AES-256-GCM encryption and environment variable key (not used directly but derived from)
2026-02-03 19:48:38 -08:00

31 lines
777 B
JSON

{
"name": "@qortal/auth-core",
"version": "0.1.0",
"description": "Core wallet/auth primitives for Qortal external auth",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "echo \"[auth-core] build\" && node ../../node_modules/typescript/bin/tsc -p tsconfig.json",
"dev": "node -e \"console.log('auth-core: no dev server')\"",
"test": "tsx --test"
},
"dependencies": {
"asmcrypto.js": "^2.3.2",
"bcryptjs": "^2.4.3",
"typescript": "^5.3.3",
"build": "^0.1.4",
"npm": "^11.8.0",
"run": "^1.5.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.19.31"
}
}