-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "@ayanworks/polygon-did-registrar",
"version": "1.0.0",
"description": "The polygon resolver library is used for resolving DID’s in Polygon Method Space. The module is supposed to be used as an integeration to polygon library.",
"files": [
"build"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"types": "./build/index.d.mts",
"module": "./build/index.mjs",
"exports": {
".": "./build/index.mjs",
"./package.json": "./package.json"
}
},
"homepage": "https://github.com/ayanworks/polygon-did-modules/tree/main/packages/did-registrar",
"repository": {
"type": "git",
"url": "https://github.com/ayanworks/polygon-did-modules",
"directory": "packages/did-registrar"
},
"scripts": {
"build": "tsdown --config-loader unconfig",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@ayanworks/polygon-did-registry-contract": "catalog:",
"@ayanworks/polygon-did-resolver": "catalog:",
"@ethersproject/basex": "^5.8.0",
"@ethersproject/signing-key": "^5.8.0",
"@ethersproject/transactions": "^5.8.0",
"@ethersproject/wallet": "^5.8.0",
"did-resolver": "catalog:",
"ethers": "catalog:",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "catalog:",
"typescript": "catalog:"
}
}