@zitadel/cli 0.0.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 +21 -0
- package/README.md +345 -0
- package/SKILLS.md +71 -0
- package/bin/run.js +4 -0
- package/dist/commands/apply.mjs +62 -0
- package/dist/commands/apply.mjs.map +1 -0
- package/dist/commands/doctor.mjs +302 -0
- package/dist/commands/doctor.mjs.map +1 -0
- package/dist/commands/eject.mjs +137 -0
- package/dist/commands/eject.mjs.map +1 -0
- package/dist/commands/plan.mjs +52 -0
- package/dist/commands/plan.mjs.map +1 -0
- package/dist/commands/setup.mjs +694 -0
- package/dist/commands/setup.mjs.map +1 -0
- package/dist/commands/status.mjs +47 -0
- package/dist/commands/status.mjs.map +1 -0
- package/dist/orca-COsUnVoz.mjs +1006 -0
- package/dist/orca-COsUnVoz.mjs.map +1 -0
- package/dist/project-C3pSfbao.mjs +588 -0
- package/dist/project-C3pSfbao.mjs.map +1 -0
- package/dist/sync-Cuyh-X1J.mjs +733 -0
- package/dist/sync-Cuyh-X1J.mjs.map +1 -0
- package/oclif.manifest.json +521 -0
- package/package.json +113 -0
package/package.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zitadel/cli",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Agent-friendly Zitadel CLI",
|
|
5
|
+
"homepage": "https://github.com/zitadel/nextgen/tree/main/apps/cli#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/zitadel/nextgen/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/zitadel/nextgen.git",
|
|
13
|
+
"directory": "apps/cli"
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"zitadel": "./bin/run.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"bin",
|
|
20
|
+
"dist",
|
|
21
|
+
"oclif.manifest.json",
|
|
22
|
+
"SKILLS.md"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"oclif": {
|
|
28
|
+
"bin": "zitadel",
|
|
29
|
+
"dirname": "zitadel",
|
|
30
|
+
"commands": "./dist/commands",
|
|
31
|
+
"topicSeparator": " ",
|
|
32
|
+
"plugins": [
|
|
33
|
+
"@oclif/plugin-help",
|
|
34
|
+
"@oclif/plugin-not-found",
|
|
35
|
+
"@oclif/plugin-which",
|
|
36
|
+
"@oclif/plugin-commands",
|
|
37
|
+
"@oclif/plugin-autocomplete",
|
|
38
|
+
"@oclif/plugin-search",
|
|
39
|
+
"@oclif/plugin-version"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"type": "module",
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@clack/prompts": "^1.2.0",
|
|
45
|
+
"@oclif/core": "^4.11.4",
|
|
46
|
+
"@oclif/plugin-autocomplete": "^3.2.50",
|
|
47
|
+
"@oclif/plugin-commands": "^4.1.55",
|
|
48
|
+
"@oclif/plugin-help": "^6.2.49",
|
|
49
|
+
"@oclif/plugin-not-found": "^3.2.86",
|
|
50
|
+
"@oclif/plugin-search": "^1.2.50",
|
|
51
|
+
"@oclif/plugin-version": "^2.2.46",
|
|
52
|
+
"@oclif/plugin-which": "^3.2.55",
|
|
53
|
+
"ajv": "^8.20.0",
|
|
54
|
+
"consola": "^3.4.2",
|
|
55
|
+
"safe-stable-stringify": "^2.5.0",
|
|
56
|
+
"zod": "^4.3.6",
|
|
57
|
+
"picocolors": "^1.1.1",
|
|
58
|
+
"@zitadel/api": "0.0.0"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@types/node": "^25.6.0",
|
|
62
|
+
"msw": "^2.14.6",
|
|
63
|
+
"oclif": "^4.17.46",
|
|
64
|
+
"tsdown": "^0.21.10",
|
|
65
|
+
"vitest": "^3.0.0",
|
|
66
|
+
"@zitadel/api-mock": "0.0.0",
|
|
67
|
+
"@zitadel/sdk-next": "0.0.0"
|
|
68
|
+
},
|
|
69
|
+
"nx": {
|
|
70
|
+
"targets": {
|
|
71
|
+
"build": {
|
|
72
|
+
"options": {
|
|
73
|
+
"cache": true
|
|
74
|
+
},
|
|
75
|
+
"inputs": [
|
|
76
|
+
"production",
|
|
77
|
+
"^production",
|
|
78
|
+
{
|
|
79
|
+
"externalDependencies": [
|
|
80
|
+
"tsdown"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"outputs": [
|
|
85
|
+
"{projectRoot}/dist/**/*.mjs",
|
|
86
|
+
"{projectRoot}/dist/**/*.mjs.map"
|
|
87
|
+
],
|
|
88
|
+
"dependsOn": [
|
|
89
|
+
"^build",
|
|
90
|
+
"^typecheck"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"readme": {
|
|
94
|
+
"dependsOn": [
|
|
95
|
+
"build"
|
|
96
|
+
],
|
|
97
|
+
"inputs": [
|
|
98
|
+
"{projectRoot}/dist/**/*.mjs",
|
|
99
|
+
"{projectRoot}/README.md"
|
|
100
|
+
],
|
|
101
|
+
"outputs": [
|
|
102
|
+
"{projectRoot}/README.md"
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"scripts": {
|
|
108
|
+
"build": "tsdown",
|
|
109
|
+
"typecheck": "tsc --noEmit",
|
|
110
|
+
"test": "vitest run",
|
|
111
|
+
"readme": "oclif readme"
|
|
112
|
+
}
|
|
113
|
+
}
|