-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "@colony/contractor",
"version": "2.4.0",
"description": "✒️ A nifty tool that creates Colony Network TypeScript bindings",
"type": "module",
"scripts": {
"clean": "rimraf ./bin",
"build": "npm run clean && tsc --declaration --outDir bin",
"lint": "eslint --ext .ts src",
"typecheck": "tsc --noEmit"
},
"bin": {
"contractor": "./bin/contractor.js"
},
"files": [
"./bin",
"README.md"
],
"engines": {
"node": "^18 || ^20 || ^22",
"pnpm": "^10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyJS.git"
},
"author": "Christian Maniewski <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/JoinColony/colonyJS/issues"
},
"homepage": "https://docs.colony.io/develop",
"dependencies": {
"@colony/abis": "^2.0.0",
"@typechain/ethers-v5": "^11.1.0",
"@typechain/ethers-v6": "^0.4.2",
"@types/mkdirp": "^1.0.2",
"@types/yargs": "^17.0.24",
"mkdirp": "^1.0.4",
"rimraf": "^5.0.0",
"typechain": "8.3.0",
"yargs": "^17.7.1"
}
}