@shepai/cli 1.3.0 → 1.4.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/dist/src/presentation/cli/commands/settings/index.d.ts +15 -0
- package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/index.js +21 -0
- package/dist/src/presentation/cli/commands/settings/init.command.d.ts +15 -0
- package/dist/src/presentation/cli/commands/settings/init.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/init.command.js +71 -0
- package/dist/src/presentation/cli/commands/settings/show.command.d.ts +16 -0
- package/dist/src/presentation/cli/commands/settings/show.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/show.command.js +66 -0
- package/dist/src/presentation/cli/index.js +4 -2
- package/dist/src/presentation/cli/ui/index.d.ts +2 -0
- package/dist/src/presentation/cli/ui/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/ui/index.js +2 -0
- package/dist/src/presentation/cli/ui/output.d.ts +33 -0
- package/dist/src/presentation/cli/ui/output.d.ts.map +1 -0
- package/dist/src/presentation/cli/ui/output.js +49 -0
- package/dist/src/presentation/cli/ui/tables.d.ts +19 -0
- package/dist/src/presentation/cli/ui/tables.d.ts.map +1 -0
- package/dist/src/presentation/cli/ui/tables.js +32 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shepai/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"@testing-library/react": "^16.3.2",
|
|
102
102
|
"@testing-library/user-event": "^14.6.1",
|
|
103
103
|
"@types/better-sqlite3": "^7.6.13",
|
|
104
|
+
"@types/js-yaml": "^4.0.9",
|
|
104
105
|
"@types/node": "^25.2.0",
|
|
105
106
|
"@types/react": "^19.2.10",
|
|
106
107
|
"@types/react-dom": "^19.2.3",
|
|
@@ -140,8 +141,10 @@
|
|
|
140
141
|
"@typespec-tools/emitter-typescript": "^0.3.0",
|
|
141
142
|
"better-sqlite3": "^12.6.2",
|
|
142
143
|
"class-variance-authority": "^0.7.1",
|
|
144
|
+
"cli-table3": "^0.6.5",
|
|
143
145
|
"clsx": "^2.1.1",
|
|
144
146
|
"commander": "^14.0.3",
|
|
147
|
+
"js-yaml": "^4.1.1",
|
|
145
148
|
"lucide-react": "^0.563.0",
|
|
146
149
|
"next": "^16.1.6",
|
|
147
150
|
"picocolors": "^1.1.1",
|