@standardagents/cli 0.10.1-next.82e11d5 → 0.11.0-next.ab7e1ea

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardagents/cli",
3
- "version": "0.10.1-next.82e11d5",
3
+ "version": "0.11.0-next.ab7e1ea",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "restricted",
@@ -18,7 +18,8 @@
18
18
  "agents": "./dist/index.js"
19
19
  },
20
20
  "files": [
21
- "dist"
21
+ "dist",
22
+ "chat"
22
23
  ],
23
24
  "dependencies": {
24
25
  "commander": "^12.1.0",
@@ -28,16 +29,15 @@
28
29
  },
29
30
  "devDependencies": {
30
31
  "@types/node": "^22.18.13",
31
- "concurrently": "^9.1.2",
32
32
  "tsup": "^8.5.0",
33
- "typescript": "~5.8.0",
34
- "wait-on": "^8.0.2"
33
+ "tsx": "^4.20.6",
34
+ "typescript": "^5.9.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsup",
38
38
  "dev": "tsup --watch",
39
39
  "typecheck": "tsc --noEmit",
40
- "dev:chat": "concurrently -n builder,chat -c blue,green \"pnpm -w run dev\" \"wait-on http://localhost:5178/api/agents && pnpm -F @standardagents/chat dev:vite\"",
41
- "dev:chat-next": "concurrently -n builder,chat -c blue,green \"pnpm -w run dev\" \"wait-on http://localhost:5178/api/agents && pnpm -F @standardagents/chat dev:next\""
40
+ "dev:chat": "pnpm exec tsx scripts/dev-chat.ts",
41
+ "dev:chat-next": "pnpm exec tsx scripts/dev-chat.ts --next"
42
42
  }
43
43
  }