midnight-mcp 0.2.9 → 0.2.10
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/README.md +18 -11
- package/dist/bin.js +3 -3
- package/dist/{chunk-5PGBYGCG.js → chunk-7KJSVMFI.js} +957 -473
- package/dist/{chunk-WZVWUFLH.js → chunk-C23TNY65.js} +16 -7
- package/dist/db-BCMNMI6F.js +7 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/db-2VUY2I5E.js +0 -7
package/README.md
CHANGED
|
@@ -167,17 +167,24 @@ Quick references available offline:
|
|
|
167
167
|
|
|
168
168
|
## Indexed Repositories
|
|
169
169
|
|
|
170
|
-
The API indexes **
|
|
171
|
-
|
|
172
|
-
| Category
|
|
173
|
-
|
|
|
174
|
-
| **
|
|
175
|
-
| **
|
|
176
|
-
| **Infrastructure**
|
|
177
|
-
| **
|
|
178
|
-
| **
|
|
179
|
-
| **
|
|
180
|
-
| **
|
|
170
|
+
The API indexes **102+ Midnight repositories** from the entire Midnight ecosystem:
|
|
171
|
+
|
|
172
|
+
| Category | Count | Key Repositories |
|
|
173
|
+
| ------------------------ | ----- | -------------------------------------------------------------------------------- |
|
|
174
|
+
| **Compact Language** | 6 | `compact`, `compact-lsp`, `compact-tree-sitter`, `compact-zed` |
|
|
175
|
+
| **SDKs & APIs** | 5 | `midnight-js`, `midnight-sdk`, `midnight-wallet`, `midnight-dapp-connector` |
|
|
176
|
+
| **Core Infrastructure** | 9 | `midnight-node`, `midnight-indexer`, `midnight-ledger`, `midnight-zk` |
|
|
177
|
+
| **ZK & Cryptography** | 6 | `midnight-trusted-setup`, `fri`, `galois_recursion`, `pluto_eris` |
|
|
178
|
+
| **Documentation** | 5 | `midnight-docs`, `midnight-improvement-proposals`, `midnight-architecture` |
|
|
179
|
+
| **Examples & Templates** | 8 | `example-counter`, `example-bboard`, `example-dex`, `example-DAO` |
|
|
180
|
+
| **Identity** | 5 | `midnight-did`, `midnight-did-resolver`, `midnight-verifiable-credentials` |
|
|
181
|
+
| **Developer Tools** | 4 | `setup-compact-action`, `upload-sarif-github-action`, `midnight-dev-utils` |
|
|
182
|
+
| **Solutions & Apps** | 7 | `midnight-solutions`, `midnight-website-next`, `nightcap`, `ocp` |
|
|
183
|
+
| **Glacier Drop** | 15 | `midnight-glacier-drop-tools`, `gd-claim-api`, `gd-claim-portal` |
|
|
184
|
+
| **Partners** | 14 | OpenZeppelin, BrickTowers, MeshJS, PaimaStudios, hackathon winners |
|
|
185
|
+
| **Other** | 18+ | Contracts, bridges, token distribution, monitoring, QA tools, community projects |
|
|
186
|
+
|
|
187
|
+
All **non-archived** repositories from the `midnightntwrk` organization plus community partners. See [api/README.md](api/README.md#indexed-repositories-102) for the complete list.
|
|
181
188
|
|
|
182
189
|
---
|
|
183
190
|
|
package/dist/bin.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import {
|
|
3
3
|
startHttpServer,
|
|
4
4
|
startServer
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-7KJSVMFI.js";
|
|
6
6
|
import {
|
|
7
7
|
setOutputFormat
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-C23TNY65.js";
|
|
9
9
|
|
|
10
10
|
// src/bin.ts
|
|
11
11
|
import { config } from "dotenv";
|
|
@@ -13,7 +13,7 @@ import { resolve } from "path";
|
|
|
13
13
|
import yargs from "yargs";
|
|
14
14
|
import { hideBin } from "yargs/helpers";
|
|
15
15
|
config({ path: resolve(process.cwd(), ".env") });
|
|
16
|
-
var CURRENT_VERSION = "0.2.
|
|
16
|
+
var CURRENT_VERSION = "0.2.10";
|
|
17
17
|
process.on("uncaughtException", (error) => {
|
|
18
18
|
console.error("Uncaught exception:", error);
|
|
19
19
|
process.exit(1);
|