This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
forked from rhlsthrm/hardhat-typechain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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
57
58
59
60
61
62
63
{
"name": "hardhat-typechain",
"version": "0.2.2",
"description": "Hardhat TypeScript plugin boilerplate",
"repository": "github:rhlsthrm/hardhat-typechain.git",
"author": "Rahul Sethuram",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"buidler",
"buidler-plugin"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit",
"build": "tsc",
"buidl": "tsc",
"watch": "tsc -w",
"prepare": "npm run build"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@typechain/ethers-v5": "^2.0.0",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@types/rimraf": "^3.0.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.19",
"fs-extra": "^9.0.1",
"hardhat": "^2.0.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"source-map-support": "^0.5.19",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^3.0.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"hardhat": "^2.0.0",
"ts-generator": "^0.1.1",
"typechain": "^3.0.0"
}
}