-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
118 lines (118 loc) · 3.19 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@labdao/openlab-cli",
"version": "0.0.1",
"description": "LabDAO OpenLab CLI",
"author": "Rik Smith-Unna @blahah",
"bin": {
"openlab": "./bin/run"
},
"homepage": "https://github.com/labdao/openlab-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "labdao/openlab-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/docs"
],
"dependencies": {
"@ensdomains/ensjs": "^3.0.0-alpha.2",
"@ethersproject/providers": "^5.6.6",
"@labdao/openlab-applayer-client": "^0.0.2",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"apisauce": "^2.1.5",
"async-folder-walker": "^2.2.1",
"cfonts": "^3.1.0",
"cids": "^1.1.9",
"conf": "^10.1.2",
"content-hash": "^2.5.2",
"download": "^8.0.0",
"ethers": "^5.6.6",
"form-data": "^4.0.0",
"get-ens": "^2.0.3",
"inquirer": "^8.2.4",
"isomorphic-fetch": "^3.0.0",
"listr": "^0.14.3",
"multiformats": "^9.7.0",
"nunjucks": "^3.2.3",
"tmp": "^0.2.1",
"treeify": "^1.1.0",
"web3": "^1.7.4",
"web3-eth": "^1.7.4"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/download": "^8.0.1",
"@types/folder-walker": "^3.2.0",
"@types/inquirer": "^8.2.1",
"@types/isomorphic-fetch": "0.0.36",
"@types/listr": "^0.14.4",
"@types/mocha": "^9.1.1",
"@types/node": "^16.9.4",
"@types/tmp": "^0.2.3",
"@types/treeify": "^1.0.0",
"chai": "^4",
"eslint": "^7.32.0",
"globby": "^11",
"mocha": "^9.2.2",
"oclif": "^3",
"oclif-plugin-helpdata": "^5.1.12",
"shx": "^0.3.4",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"oclif": {
"bin": "openlab",
"dirname": "openlab",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"oclif-plugin-helpdata"
],
"topicSeparator": " ",
"topics": {
"account": {
"description": "Connect and manage your Ethereum wallet"
},
"app": {
"description": "Discover and get information about available apps"
},
"exchange": {
"description": "Manage jobs on the OpenLab exchange"
},
"file": {
"description": "Manage files available to or from OpenLab on IPFS"
}
},
"hooks": {
"init": "./src/hooks/init/load-from-ens.ts"
}
},
"scripts": {
"build": "shx rm -rf tsconfig.tsbuildinfo dist && tsc -b",
"docs": "npm run docs:mkjson && npm run docs:render",
"docs:mkjson": "./bin/dev helpdata -n > docs/helpdata.json",
"docs:readme": "oclif readme",
"docs:render": "node docs/render.js",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:nock-record": "ts-node ./scripts/nock-record.ts",
"test:check-ens": "ts-node ./src/scripts/check-ens.ts"
},
"engines": {
"node": ">=16.0.0"
},
"bugs": "https://github.com/labDAO/openlab-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}