-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "@operatorlabs/cli",
"version": "0.0.4",
"description": "CLI tool for agents",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"prebuild": "rm -rf ./dist",
"run": "node ./dist/index.js",
"prerun": "npm run build",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "tsc"
},
"bin": {
"agent": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/operatorlabs/gateway.git"
},
"author": "Operator Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/operatorlabs/gateway/issues"
},
"homepage": "https://github.com/operatorlabs/gateway#readme",
"devDependencies": {
"@types/decompress": "^4.2.7",
"@types/dotenv": "^8.2.0",
"@types/download": "^8.0.5",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@types/yargs": "^17.0.13",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.1",
"prettier": "^2.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@xmtp/xmtp-js": "11.2.1",
"decompress": "^4.2.1",
"dotenv": "^16.3.1",
"download": "^8.0.0",
"ethers": "^5.7.2",
"fs-extra": "^11.2.0",
"ink": "^3.2.0",
"inquirer": "^9.2.12",
"open": "^10.0.3",
"react": "^17.0.2",
"yargs": "^17.6.0"
},
"engines": {
"node": ">=16.7.0"
},
"files": [
"dist",
"src"
]
}