-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 2.24 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
49
50
51
52
53
54
55
56
{
"name": "@ayanworks/polygon-did-registrar",
"version": "1.0.1-alpha.0",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf build",
"clean:deps": "pnpm clean && rm -rf node_modules",
"build": "pnpm clean && tsc",
"test": "node --require ts-node/register --test ./tests/polygon.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"
},
"author": "Ajay Jadhav <[email protected]>",
"contributors": [
"Anusha Garg <[email protected]>, Shashank Kulkarni <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@credo-ts/core": "0.5.7",
"@ayanworks/polygon-did-registry-contract": "3.0.0",
"@ayanworks/polygon-did-resolver": "1.0.0",
"did-resolver": "^4.1.0",
"@ethersproject/basex": "^5.7.0",
"@ethersproject/signing-key": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"ethers": "^6.9.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^18.17.0",
"@types/uuid": "^9.0.7",
"prettier": "^3.0.2",
"release-it": "^16.1.5",
"ts-node": "^10.9.1",
"typescript": "~5.5.2"
},
"description": "The polygon DID method library uses Ethereum based addresses as fully functional DID’s or Decentralized identifiers, on the Polygon network. The following allows one to create a key Pair based and facilitates its storage on the registry smart contract, deployed on Polygon chain. Third party users can use this to create polygon DID identities. It allows the controller to perform actions like resolve, update and delete by encapsulating polygonDID registry and PolygonDID resolver. The DID identifier allows the controller to resolve DID document for usage in different scenarios.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/ayanworks/polygon-did-registrar"
},
"keywords": [
"did-method"
],
"bugs": {
"url": "https://github.com/ayanworks/polygon-did-registrar/issues"
},
"homepage": "https://github.com/ayanworks/polygon-did-registrar#readme"
}