@morpho-org/quoter 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +203 -0
- package/README.md +87 -0
- package/morpho-quoter.js +123113 -0
- package/package.json +34 -0
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@morpho-org/quoter",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Morpho Midnight quoter CLI: setup checks, position bootstrap, ladder quoting, and combined monitoring for maker operators.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"morpho-quoter": "./morpho-quoter.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"morpho-quoter.js"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=24.14.1"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/morpho-org/morpho-bots.git",
|
|
19
|
+
"directory": "bots/quoter-bot"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/morpho-org/morpho-bots/tree/main/bots/quoter-bot#readme",
|
|
22
|
+
"bugs": "https://github.com/morpho-org/morpho-bots/issues",
|
|
23
|
+
"keywords": [
|
|
24
|
+
"morpho",
|
|
25
|
+
"midnight",
|
|
26
|
+
"quoter",
|
|
27
|
+
"market-maker",
|
|
28
|
+
"cli",
|
|
29
|
+
"base"
|
|
30
|
+
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
}
|
|
34
|
+
}
|