@reclaimprotocol/js-sdk
Version:
Designed to request proofs from the Reclaim protocol and manage the flow of claims and witness interactions.
99 lines (98 loc) • 2.35 kB
JSON
{
"name": "@reclaimprotocol/js-sdk",
"version": "4.6.3",
"description": "Designed to request proofs from the Reclaim protocol and manage the flow of claims and witness interactions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"reclaim",
"protocol",
"blockchain",
"proof",
"verification",
"identity",
"claims",
"witness",
"sdk",
"javascript",
"typescript",
"decentralized",
"web3"
],
"files": [
"dist"
],
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"build": "sh scripts/build.sh",
"release": "release-it",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"commitlint": "commitlint --edit"
},
"repository": {
"type": "git",
"url": "https://github.com/reclaimprotocol/reclaim-js-sdk"
},
"author": "ali <ali@creatoros.co>",
"license": "See License in <https://github.com/reclaimprotocol/.github/blob/main/LICENSE>",
"bugs": {
"url": "https://github.com/reclaimprotocol/reclaim-js-sdk/issues"
},
"homepage": "https://github.com/reclaimprotocol/reclaim-js-sdk/",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true,
"tag": "latest"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^30.0.0",
"@types/qs": "^6.9.11",
"@types/url-parse": "^1.4.11",
"@types/uuid": "^9.0.7",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"ts-jest": "^29.4.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"canonicalize": "^2.0.0",
"ethers": "^6.9.1",
"qs": "^6.11.2",
"release-it": "^19.0.4",
"url-parse": "^1.5.10",
"uuid": "^9.0.1"
},
"overrides": {
"@conventional-changelog/git-client": "^2.0.0"
}
}