UNPKG

js-srp6a

Version:

A modern SRP implementation for Node.js / Bun and web browsers

49 lines (48 loc) 1.17 kB
{ "name": "js-srp6a", "version": "1.0.3", "license": "MIT", "description": "A modern SRP implementation for Node.js / Bun and web browsers", "author": "Linus Unnebäck <linus@folkdatorn.se>", "contributors": [ "Mathieu Acthernoene <mathieu.acthenoene@swan.io>", "Coratger Lucas" ], "homepage": "https://github.com/palixir/js-srp6a#readme", "repository": { "type": "git", "url": "https://github.com/palixir/js-srp6a.git" }, "main": "dist/index.js", "keywords": [ "srp", "srp6a", "authentication", "remote", "password", "security", "bun" ], "scripts": { "build": "bun build --outdir dist $(pwd)/src/index.ts && bun generate:types", "generate:types": "tsc --project tsconfig.build.json", "check": "tsc --project $(pwd)/tsconfig.json", "lint": "biome lint . --no-errors-on-unmatched", "ci": "bun check && bun lint $(pwd) && bun test test", "format": "biome format --write ." }, "browserslist": [ ">0.2%", "not op_mini all", "not dead" ], "dependencies": { "jsbn": "1.1.0" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@types/bun": "latest", "@types/jsbn": "1.2.33", "typescript": "5.8.2" } }