@hyperdrive.bot/monu-api-cli 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/bin/MEMORY.md ADDED
@@ -0,0 +1,3 @@
1
+ # bin
2
+
3
+ No package memory recorded yet.
package/bin/run.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ import {execute} from '@oclif/core'
4
+
5
+ await execute({dir: import.meta.url})
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@hyperdrive.bot/monu-api-cli",
3
+ "description": "Monutrack API CLI — runtime-discovered API client for the Monutrack platform",
4
+ "version": "0.1.0",
5
+ "bin": {
6
+ "monu-api": "./bin/run.js"
7
+ },
8
+ "dependencies": {
9
+ "@hyperdrive.bot/auth-plugin": "^0.1.0",
10
+ "@hyperdrive.bot/cli-api-plugin": "^0.1.0",
11
+ "@oclif/core": "^4",
12
+ "@oclif/plugin-help": "^6"
13
+ },
14
+ "engines": {
15
+ "node": ">=18.0.0"
16
+ },
17
+ "files": [
18
+ "bin/",
19
+ "/oclif.manifest.json"
20
+ ],
21
+ "license": "MIT",
22
+ "type": "module",
23
+ "scripts": {
24
+ "test": "echo \"No tests — brand shell only\"",
25
+ "build": "echo \"No build — brand shell only\""
26
+ },
27
+ "oclif": {
28
+ "bin": "monu-api",
29
+ "dirname": "monu-api",
30
+ "plugins": [
31
+ "@oclif/plugin-help",
32
+ "@hyperdrive.bot/auth-plugin",
33
+ "@hyperdrive.bot/cli-api-plugin"
34
+ ],
35
+ "authPlugin": {
36
+ "appName": "monu-api",
37
+ "displayName": "Monutrack",
38
+ "envPrefix": "MONUTRACK",
39
+ "defaultRegion": "sa-east-1",
40
+ "ciTokenPrefix": "monutrack_sk_",
41
+ "primaryApiName": "monutrack",
42
+ "defaultBootstrapUrl": "https://oo2wp0ax27.execute-api.us-east-1.amazonaws.com/dev/tenant/bootstrap-dev",
43
+ "_bootstrapUrlNote": "TODO: Replace with Monutrack bootstrap URL when available"
44
+ },
45
+ "topicSeparator": " "
46
+ }
47
+ }