-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.47 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@reclaimprotocol/js-sdk",
"version": "5.2.0",
"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",
"prepare": "npm run build",
"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",
"@release-it/conventional-changelog": "10.0.6",
"@types/jest": "^30.0.0",
"@types/node-forge": "^1.3.14",
"@types/qrcode": "^1.5.5",
"@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",
"qs": "^6.11.2",
"release-it": "^19.2.4",
"ts-jest": "^29.4.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"canonicalize": "^2.0.0",
"ethers": "^6.9.1",
"fetch-retry": "^6.0.0",
"node-forge": "^1.3.3",
"qrcode": "^1.5.4",
"url-parse": "^1.5.10",
"uuid": "^9.0.1"
},
"overrides": {
"@conventional-changelog/git-client": "^2.0.0"
}
}