-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.5 KB
/
package.json
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
{
"name": "@ayanworks/polygon-did-resolver",
"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.",
"license": "MIT",
"main": "build/index.js",
"author": "Ajay Jadhav <[email protected]>",
"contributors": [
"Anusha Garg <[email protected]>, Shashank Kulkarni <[email protected]>"
],
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/polygon-did/polygon-did-resolver.git"
},
"keywords": [
"did-method"
],
"bugs": {
"url": "https://gitlab.com/polygon-did/polygon-did-resolver/issues"
},
"homepage": "https://gitlab.com/polygon-did/polygon-did-resolver#readme",
"scripts": {
"clean": "rm -rf build",
"clean:deps": "pnpm clean && rm -rf node_modules",
"build": "tsc",
"test": "node --require ts-node/register --test ./tests/*.test.ts",
"prettier": "prettier --ignore-path .prettierignore .",
"check-format": "pnpm prettier --list-different",
"check-types": "pnpm build --noEmit",
"format": "pnpm prettier --write",
"release": "release-it"
},
"dependencies": {
"@ayanworks/polygon-did-registry-contract": "3.0.0",
"did-resolver": "^4.1.0",
"ethers": "^5.1.0"
},
"devDependencies": {
"@types/node": "^18.17.0",
"prettier": "^3.0.2",
"release-it": "^16.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}