@m8t-stack/cli 0.2.0 → 0.2.3
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 -3
- package/dist/cli.js +4155 -337
- package/dist/cli.js.map +1 -1
- package/package.json +23 -23
package/package.json
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m8t-stack/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for managing m8t-stack deployments on Azure / Microsoft Agent Foundry",
|
|
6
6
|
"homepage": "https://github.com/m8t-run/m8t/tree/main/apps/cli#readme",
|
|
7
|
-
"repository": {
|
|
8
|
-
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/m8t-run/m8t.git",
|
|
10
|
+
"directory": "apps/cli"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/m8t-run/m8t/issues"
|
|
14
|
+
},
|
|
9
15
|
"license": "MIT",
|
|
10
|
-
"publishConfig": {
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
11
19
|
"main": "./dist/cli.js",
|
|
12
20
|
"bin": {
|
|
13
|
-
"m8t": "
|
|
21
|
+
"m8t": "dist/cli.js"
|
|
14
22
|
},
|
|
15
23
|
"files": [
|
|
16
24
|
"dist",
|
|
@@ -22,32 +30,24 @@
|
|
|
22
30
|
"build": "tsup",
|
|
23
31
|
"test": "vitest run",
|
|
24
32
|
"test:watch": "vitest",
|
|
25
|
-
"typecheck": "tsc --noEmit",
|
|
33
|
+
"typecheck": "tsc --noEmit -p tsconfig.eslint.json",
|
|
26
34
|
"lint": "eslint .",
|
|
27
35
|
"prepublishOnly": "pnpm build"
|
|
28
36
|
},
|
|
29
37
|
"dependencies": {
|
|
30
|
-
"@azure/ai-projects": "
|
|
31
|
-
"@azure/arm-appcontainers": "
|
|
32
|
-
"@azure/
|
|
33
|
-
"@azure/
|
|
34
|
-
"@azure/
|
|
38
|
+
"@azure/ai-projects": "2.1.1",
|
|
39
|
+
"@azure/arm-appcontainers": "2.2.0",
|
|
40
|
+
"@azure/arm-communication": "4.2.0",
|
|
41
|
+
"@azure/core-rest-pipeline": "1.24.0",
|
|
42
|
+
"@azure/data-tables": "13.3.2",
|
|
43
|
+
"@azure/identity": "4.13.1",
|
|
44
|
+
"@azure/keyvault-secrets": "4.11.2",
|
|
45
|
+
"@azure/monitor-query": "1.3.3",
|
|
35
46
|
"@inquirer/prompts": "^7.0.0",
|
|
36
47
|
"clipanion": "^4.0.0-rc.4",
|
|
37
48
|
"picocolors": "^1.1.0",
|
|
38
49
|
"typanion": "^3.14.0",
|
|
39
|
-
"yaml": "^2.
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@m8t-stack/api-contract": "workspace:*",
|
|
43
|
-
"@m8t-stack/eslint-config": "workspace:*",
|
|
44
|
-
"@m8t-stack/github-app-auth": "workspace:*",
|
|
45
|
-
"@types/node": "^20.19.40",
|
|
46
|
-
"eslint": "^9.39.4",
|
|
47
|
-
"tsup": "^8.3.0",
|
|
48
|
-
"tsx": "^4.21.0",
|
|
49
|
-
"typescript": "^5",
|
|
50
|
-
"vitest": "^4.1.5"
|
|
50
|
+
"yaml": "^2.9.0"
|
|
51
51
|
},
|
|
52
52
|
"comments": {
|
|
53
53
|
"dependencies.clipanion": "RC pin intentional as of 2026-05-19 — v4 stable has not shipped (latest dist-tag = 4.0.0-rc.4). Re-evaluate during F4. See F3.5 plan Task 3."
|