6d9cf4449f
- 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)
31 lines
777 B
JSON
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"
|
|
}
|
|
}
|