-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "wttp-handler",
"version": "2.0.30",
"scripts": {
"example": "node examples/basic-fetch.js",
"test": "npx hardhat test",
"build": "npx hardhat typechain && tsc",
"postbuild": "copyfiles \"contracts/**/*\" dist && copyfiles \"src/wttp.config.json\" dist",
"prepack": "npx hardhat typechain && npm run postbuild",
"docs:ts": "typedoc",
"docs:sol": "hardhat docgen",
"docs": "npm run docs:ts && npm run docs:sol"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"hardhat": "^2.22.14",
"hardhat-docgen": "^1.3.0",
"hardhat-switch-network": "^1.1.1",
"typedoc": "^0.27.4"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"ethers": "^6.13.4"
},
"description": "A decentralized version of the HTTP protocol using blockchain.",
"main": "dist/src/WTTPHandler.js",
"types": "dist/src/WTTPHandler.d.ts",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechnicallyWeb3/wttp.git"
},
"keywords": [
"web3",
"http",
"protocol",
"wttp",
"blockchain",
"decentralized",
"evm",
"solidity"
],
"author": "Technically Web3",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/TechnicallyWeb3/wttp/issues"
},
"homepage": "https://github.com/TechnicallyWeb3/wttp#readme"
}