Files
AutistMask/package.json
sneak a967029511
All checks were successful
check / check (push) Successful in 21s
Add ethers.js and libsodium, document crypto policy
Runtime deps: ethers 6.16.0 (all Ethereum operations) and
libsodium-wrappers-sumo 0.8.2 (Argon2id + XSalsa20-Poly1305 for
encrypting secrets at rest). README now documents all dependencies
with versions/licenses, a crypto policy forbidding raw primitives
in application code, and the updated encryption scheme.
2026-02-25 15:37:49 +07:00

26 lines
703 B
JSON

{
"name": "autistmask",
"version": "0.1.0",
"description": "Minimal Ethereum wallet browser extension for Chrome and Firefox",
"author": "sneak <sneak@sneak.berlin>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"test": "jest --forceExit",
"build": "node build.js",
"lint": "prettier --check .",
"fmt": "prettier --write .",
"fmt-check": "prettier --check ."
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.1",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1"
},
"dependencies": {
"ethers": "^6.16.0",
"libsodium-wrappers-sumo": "^0.8.2"
}
}