-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "@celo-tools/celo-ethers-wrapper",
"version": "2.3.0",
"description": "A minimal wrapper to make Ethers.JS compatible with the Celo network.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/celo-tools/celo-ethers-wrapper",
"license": "MIT",
"author": "J M Rossy",
"keywords": [
"Celo",
"Ethers"
],
"scripts": {
"clean": "rm -rf build",
"build": "yarn build:main && yarn build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "jest"
},
"engines": {
"node": ">=18.14.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.8.2",
"dotenv": "^16.4.5",
"ethers": "^6.7.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ethers": "^6"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"LICENSE",
"README.md"
],
"packageManager": "yarn@3.6.1",
"dependencies": {
"@celo/abis": "latest"
}
}