-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.08 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
{
"name": "sushi-sh",
"description": "Shell Client for Sushiswap protocol",
"version": "1.1.0",
"author": "SEE CONTRIBUTORS",
"bin": {
"sushi": "bin/run"
},
"bugs": {
"url": "https://github.com/manifoldfinance/sushi-sh/issues"
},
"dependencies": {
"@graphql-codegen/typescript-oclif": "^2.1.3",
"@graphql-codegen/typescript-operations": "^2.1.2",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/core": "^0.5.34",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-commands": "^1.3.0",
"@oclif/plugin-help": "^3",
"@oclif/plugin-not-found": "^1.2.4",
"@oclif/plugin-update": "^1.3.10",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"graphql": "^15.5.0",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.12.4"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.21.1",
"@graphprotocol/graph-ts": "^0.20.0",
"@graphql-codegen/cli": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.1.2",
"@graphql-codegen/typescript": "^2.2.0",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1",
"@types/node": "^14",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"globby": "^11.0.3",
"prettier": "^2.1.1",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"tslib": "^2.3.1",
"typedoc": "^0.20.36",
"typedoc-neo-theme": "^1.1.1",
"typescript": "^4.2.4"
},
"directories": {
"lib": "lib",
"bin": "bin",
"docs": "docs"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/manifoldfinance/sushi-sh",
"keywords": [
"blockchian",
"client",
"defi",
"ethereum",
"oclif",
"sushi",
"sushiswap",
"terminal"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "sushi",
"macos": {
"identifier": "com.sushi.cli"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-update",
"@oclif/plugin-warn-if-update-available"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldfinance/sushi-sh.git"
},
"scripts": {
"build": "npx tsc -b",
"codegen": "npx graphql-codegen --config codegen.yml",
"docs": "npx typedoc src/index.ts",
"lint": "npx eslint src --ext .ts --fix",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"release": "npx oclif-dev pack:macos && oclif-dev pack:win && npm publish --access public",
"test": "exit 0",
"version": "npx oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}