@naladelponce/hf-web-client
Version:
Un cliente TypeScript moderno y robusto para interactuar con Hyperledger Fabric desde entornos web y Node.js.
83 lines • 2.38 kB
JSON
{
"name": "@naladelponce/hf-web-client",
"version": "1.0.0",
"type": "module",
"description": "Un cliente TypeScript moderno y robusto para interactuar con Hyperledger Fabric desde entornos web y Node.js.",
"author": "naladelponce@gmail.com",
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/nalapon/hf-web-client"
},
"keywords": [
"hyperledger",
"fabric",
"sdk",
"client",
"fabric-gateway",
"gateway",
"hf",
"hf-web-client",
"web",
"blockchain",
"isomorphic"
],
"dependencies": {
"@bufbuild/protobuf": "^2.5.2",
"@connectrpc/connect": "^2.0.2",
"@connectrpc/connect-web": "^2.0.2",
"@noble/hashes": "^1.8.0",
"@scure/bip39": "^1.6.0",
"@simplewebauthn/browser": "^13.1.0",
"@zxcvbn-ts/core": "^3.0.4",
"bn.js": "^5.2.2",
"buffer": "^6.0.3",
"idb-keyval": "^6.2.2",
"jose": "^6.0.11",
"jsrsasign": "^11.1.0",
"shamir-secret-sharing": "^0.0.4"
},
"devDependencies": {
"@bufbuild/buf": "^1.55.1",
"@bufbuild/protoc-gen-es": "^2.5.2",
"@eslint/js": "^9.29.0",
"@types/bn.js": "^5.2.0",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.29.0",
"jsdom": "^26.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "npm run clean && npm run proto:generate && tsup",
"clean": "rimraf dist src/generated_protos",
"lint": "eslint \"src/**/*.ts\"",
"proto:generate": "node ./scripts/generate-protos.mjs",
"proto:clean": "rimraf src/generated_protos",
"test": "vitest run --exclude=**/e2e/**",
"test:unit": "vitest run --exclude=**/e2e/**",
"test:watch": "vitest --watch --exclude=**/e2e/**",
"coverage": "vitest run --coverage --exclude=**/e2e/**",
"test:e2e": "ts-node --esm scripts/e2e-runner.ts",
"test:e2e:teardown": "ts-node --esm scripts/e2e-teardown.ts"
}
}