-
Notifications
You must be signed in to change notification settings - Fork 364
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "@typechain/ethers-v5",
"description": "🔌 TypeChain target for ethers-v5",
"keywords": [
"ethers",
"ethersjs",
"ethereum",
"TypeChain",
"TypeScript"
],
"version": "11.1.2",
"license": "MIT",
"repository": "https://github.com/ethereum-ts/Typechain",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"static/**",
"README.md",
"LICENSE"
],
"scripts": {
"start": "ts-node -T ./src/index.ts",
"build": "tsc --build ./tsconfig.build.json --verbose",
"format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\" README.md",
"format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\" README.md",
"lint": "eslint --ext .ts src test",
"lint:fix": "pnpm lint --fix",
"typecheck": "tsc --noEmit --incremental false --composite false",
"clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
"test": "mocha --config ../../.mocharc.js",
"test:fix": "pnpm lint:fix && pnpm format:fix && pnpm test && pnpm typecheck"
},
"peerDependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"ethers": "^5.1.3",
"typechain": "workspace:^8.3.2",
"typescript": ">=4.3.0"
},
"devDependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@types/lodash": "^4.14.139",
"ethers": "^5.1.3",
"test-utils": "1.0.0",
"typechain": "workspace:^8.3.2",
"typescript": ">=4.3.0",
"@types/proxyquire": "^1.3.28",
"proxyquire": "^2.1.3"
},
"dependencies": {
"lodash": "^4.17.15",
"ts-essentials": "^7.0.1"
}
}