@saga-ai/cli 2.12.1 → 2.14.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/cli.cjs +552 -29
- package/dist/client/assets/index-CdpmfaeI.css +1 -0
- package/dist/client/assets/index-sgqIEDO2.js +198 -0
- package/dist/client/index.html +2 -2
- package/package.json +11 -3
- package/dist/client/assets/index-Ct5VoJmK.js +0 -165
- package/dist/client/assets/index-DVpp5008.css +0 -1
package/dist/client/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>SAGA Dashboard</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-sgqIEDO2.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CdpmfaeI.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saga-ai/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.0",
|
|
4
4
|
"description": "CLI for SAGA - Structured Autonomous Goal Achievement",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
"@storybook/addon-onboarding": "^10.2.1",
|
|
44
44
|
"@storybook/addon-vitest": "^10.2.1",
|
|
45
45
|
"@storybook/react-vite": "^10.2.1",
|
|
46
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
47
|
+
"@tanstack/react-virtual": "^3.13.18",
|
|
48
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
49
|
+
"@testing-library/react": "^16.3.2",
|
|
46
50
|
"@types/express": "^5.0.6",
|
|
47
51
|
"@types/node": "^22.10.0",
|
|
48
52
|
"@types/react": "^18.3.17",
|
|
@@ -57,12 +61,15 @@
|
|
|
57
61
|
"clsx": "^2.1.1",
|
|
58
62
|
"concurrently": "^9.2.1",
|
|
59
63
|
"esbuild": "^0.24.0",
|
|
64
|
+
"jsdom": "^27.4.0",
|
|
60
65
|
"lucide-react": "^0.563.0",
|
|
61
66
|
"playwright": "^1.58.0",
|
|
62
67
|
"postcss": "^8.5.6",
|
|
63
68
|
"react": "^18.3.1",
|
|
64
69
|
"react-dom": "^18.3.1",
|
|
70
|
+
"react-markdown": "^10.1.0",
|
|
65
71
|
"react-router-dom": "^6.30.0",
|
|
72
|
+
"remark-gfm": "^4.0.1",
|
|
66
73
|
"storybook": "^10.2.1",
|
|
67
74
|
"supertest": "^7.2.2",
|
|
68
75
|
"tailwind-merge": "^3.4.0",
|
|
@@ -83,10 +90,10 @@
|
|
|
83
90
|
"scripts": {
|
|
84
91
|
"build": "esbuild src/cli.ts --bundle --platform=node --outfile=dist/cli.cjs --format=cjs --banner:js='#!/usr/bin/env node' --external:express --external:ws --external:chokidar --external:gray-matter --external:fuse.js --external:commander",
|
|
85
92
|
"build:client": "vite build --config src/client/vite.config.ts",
|
|
86
|
-
"build:all": "pnpm build
|
|
93
|
+
"build:all": "concurrently -g \"pnpm build\" \"pnpm build:client\"",
|
|
87
94
|
"dev": "npm run build && node dist/cli.cjs",
|
|
88
95
|
"dev:client": "vite --config src/client/vite.config.ts",
|
|
89
|
-
"test": "concurrently -g \"vitest run\" \"pnpm run test:integration\" \"pnpm run test:e2e\"",
|
|
96
|
+
"test": "pnpm build:all && concurrently -g \"vitest run\" \"pnpm run test:integration\" \"pnpm run test:e2e\"",
|
|
90
97
|
"test:watch": "vitest",
|
|
91
98
|
"test:integration": "playwright test --config src/client/playwright.config.ts",
|
|
92
99
|
"test:integration:ui": "playwright test --config src/client/playwright.config.ts --ui",
|
|
@@ -94,6 +101,7 @@
|
|
|
94
101
|
"test:e2e:ui": "playwright test --config src/client/playwright.e2e.config.ts --ui",
|
|
95
102
|
"test-storybook": "vitest --project=storybook",
|
|
96
103
|
"test:storybook": "vitest run --project=storybook",
|
|
104
|
+
"test:storybook:update": "vitest run --project=storybook --update",
|
|
97
105
|
"publish:npm": "pnpm build:all && pnpm test && pnpm publish --access public",
|
|
98
106
|
"storybook": "storybook dev -p 6006 -c src/client/.storybook",
|
|
99
107
|
"build-storybook": "storybook build -c src/client/.storybook -o storybook-static"
|