-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "@ayanworks/polygon-schema-manager",
"version": "1.0.0",
"description": "Polygon schema manager",
"main": "build/index.js",
"files": [
"build"
],
"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/schema-manager.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"
},
"keywords": [],
"author": "Sai Ranjit Tummalapalli",
"license": "Apache-2.0",
"dependencies": {
"@ayanworks/polygon-did-registry-contract": "3.0.0",
"@ayanworks/polygon-did-resolver": "1.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"axios": "^1.6.3",
"did-resolver": "^4.1.0",
"ethers": "^6.9.0",
"keccak256": "^1.0.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@types/node": "^18.17.0",
"@types/uuid": "^9.0.7",
"dotenv": "^16.0.2",
"hardhat": "^2.19.4",
"mocha": "^7.0.0",
"prettier": "^3.0.2",
"release-it": "^16.1.5",
"solc": "0.8.16",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayanworks/polygon-schema-manager.git"
},
"bugs": {
"url": "https://github.com/ayanworks/polygon-schema-manager/issues"
},
"homepage": "https://github.com/ayanworks/polygon-schema-manager#readme"
}