@shard-auth/client
Version:
Next-generation API authentication without secret keys - MPC-based authentication with FROST threshold signatures
56 lines (55 loc) • 1.34 kB
JSON
{
"name": "@shard-auth/client",
"version": "0.1.0",
"description": "Next-generation API authentication without secret keys - MPC-based authentication with FROST threshold signatures",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"dev": "tsx watch src/index.ts"
},
"keywords": [
"mpc",
"frost",
"authentication",
"threshold-signature",
"api-security",
"cryptography",
"multi-party-computation"
],
"author": {
"name": "Yuya Kato",
"email": "y.kato@wizonchain.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wOC-MicroApp/shard-auth.git"
},
"bugs": {
"url": "https://github.com/wOC-MicroApp/shard-auth/issues"
},
"homepage": "https://github.com/wOC-MicroApp/shard-auth#readme",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"dependencies": {
"@noble/curves": "^1.9.6",
"@noble/hashes": "^1.8.0"
}
}