-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 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
{
"name": "@colony/contractor",
"version": "2.4.0",
"description": "✒️ A nifty tool that creates Colony Network TypeScript bindings",
"scripts": {
"clean": "rimraf ./bin",
"build": "npm run clean && tsc --module commonjs --outDir bin",
"lint": "eslint --ext .ts src",
"typecheck": "tsc --noEmit"
},
"bin": {
"contractor": "./bin/contractor.js"
},
"files": [
"./bin",
"README.md"
],
"engines": {
"node": "^16 || ^18 || ^20",
"pnpm": "^8"
},
"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": "^1.8.2",
"@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"
},
"devDependencies": {
"@types/node": "^18.15.11",
"ts-node": "^10.9.1"
}
}