-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "earthfast-cli",
"version": "0.10.2",
"description": "Command line utility for EarthFast",
"homepage": "https://earthfast.com",
"license": "MIT",
"scripts": {
"run": "npm run build && ./bin/run",
"dev": "npm run build && ./bin/dev",
"debug": "DEBUG=1 npm run build && ./bin/dev",
"build": "rm -rf ./dist && tsc",
"clean": "rm -rf ./dist",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest"
},
"bin": {
"earthfast": "./bin/run"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json",
".env"
],
"repository": {
"type": "git",
"url": "https://github.com/earthfast/earthfast-cli"
},
"engines": {
"node": ">=20.0.0"
},
"oclif": {
"bin": "earthfast",
"dirname": "earthfast",
"commands": "./dist/src/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"admin": {
"description": "Perform admin functions such as granting roles."
},
"bundle": {
"description": "Build EarthFast content bundles."
},
"key": {
"description": "Manage keys for signing transactions."
},
"escrow": {
"description": "Manage project escrows."
},
"node": {
"description": "Create and manage nodes."
},
"operator": {
"description": "Create and manage operators."
},
"project": {
"description": "Create and manage projects."
}
}
},
"dependencies": {
"@ethersproject/constants": "^5.7.0",
"@ledgerhq/hw-app-eth": "^6.29.10",
"@ledgerhq/hw-transport-node-hid": "^6.27.6",
"@oclif/core": "^1.20.2",
"@oclif/plugin-help": "^5.1.17",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"ethers": "^5.7.1",
"inquirer": "^7.1.4",
"keytar": "^7.9.0",
"tar": "^6.1.11",
"yargs": "^17.6.0"
},
"devDependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/json-wallets": "^5.7.0",
"@ledgerhq/types-cryptoassets": "^7.8.0",
"@ledgerhq/types-devices": "^6.23.0",
"@types/inquirer": "^9.0.2",
"@types/node": "^18.11.0",
"@types/node-hid": "^1.3.1",
"@types/tar": "^6.1.3",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"oclif": "^3.2.24",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}