@lousy-agents/cli 5.17.1 → 5.17.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/api/copilot-with-fastify/.devcontainer/devcontainer.json +1 -1
- package/api/copilot-with-fastify/.github/workflows/ci.yml +4 -4
- package/api/copilot-with-fastify/biome.template.json +1 -1
- package/api/copilot-with-fastify/package-lock.json +779 -372
- package/api/copilot-with-fastify/package.json +11 -11
- package/cli/copilot-with-citty/.devcontainer/devcontainer.json +1 -1
- package/cli/copilot-with-citty/.github/workflows/ci.yml +3 -3
- package/cli/copilot-with-citty/biome.template.json +1 -1
- package/cli/copilot-with-citty/package.json +8 -8
- package/dist/316.js +408 -379
- package/dist/653.js +173 -371
- package/dist/index.js +750 -318
- package/package.json +1 -1
- package/ui/copilot-with-react/.devcontainer/devcontainer.json +1 -1
- package/ui/copilot-with-react/.github/workflows/ci.yml +3 -3
- package/ui/copilot-with-react/biome.template.json +1 -1
- package/ui/copilot-with-react/package.json +13 -13
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"db:migrate": "tsx src/db/migrate.ts"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@fastify/cors": "11.
|
|
19
|
+
"@fastify/cors": "11.3.0",
|
|
20
20
|
"@fastify/sensible": "6.0.4",
|
|
21
|
-
"fastify": "5.
|
|
22
|
-
"kysely": "0.29.
|
|
21
|
+
"fastify": "5.10.0",
|
|
22
|
+
"kysely": "0.29.3",
|
|
23
23
|
"pino": "10.3.1",
|
|
24
24
|
"postgres": "3.4.9",
|
|
25
25
|
"zod": "4.4.3"
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"zod": "4.4.3"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@biomejs/biome": "2.5.
|
|
32
|
-
"@lousy-agents/mcp": "5.
|
|
33
|
-
"@modelcontextprotocol/server-sequential-thinking": "
|
|
31
|
+
"@biomejs/biome": "2.5.3",
|
|
32
|
+
"@lousy-agents/mcp": "5.17.2",
|
|
33
|
+
"@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
|
|
34
34
|
"@testcontainers/postgresql": "12.0.4",
|
|
35
|
-
"@types/node": "24.13.
|
|
36
|
-
"@upstash/context7-mcp": "3.2.
|
|
35
|
+
"@types/node": "24.13.3",
|
|
36
|
+
"@upstash/context7-mcp": "3.2.3",
|
|
37
37
|
"chance": "1.1.13",
|
|
38
38
|
"testcontainers": "12.0.4",
|
|
39
|
-
"tsx": "4.
|
|
40
|
-
"typescript": "
|
|
41
|
-
"vitest": "4.1.
|
|
39
|
+
"tsx": "4.23.1",
|
|
40
|
+
"typescript": "7.0.2",
|
|
41
|
+
"vitest": "4.1.10"
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"ghcr.io/devcontainers/features/copilot-cli:1.0.0": {},
|
|
12
12
|
"ghcr.io/anthropics/devcontainer-features/claude-code:1": {
|
|
13
|
-
"version": "v2.1.
|
|
13
|
+
"version": "v2.1.209"
|
|
14
14
|
},
|
|
15
15
|
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1.0.2": {
|
|
16
16
|
"packages": "yamllint, shellcheck",
|
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
19
19
|
|
|
20
20
|
- name: Setup Node.js
|
|
21
|
-
uses: actions/setup-node@
|
|
21
|
+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
22
22
|
with:
|
|
23
23
|
node-version-file: '.nvmrc'
|
|
24
24
|
cache: 'npm'
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
37
37
|
|
|
38
38
|
- name: Setup Node.js
|
|
39
|
-
uses: actions/setup-node@
|
|
39
|
+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
40
40
|
with:
|
|
41
41
|
node-version-file: '.nvmrc'
|
|
42
42
|
cache: 'npm'
|
|
@@ -55,7 +55,7 @@ jobs:
|
|
|
55
55
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
56
56
|
|
|
57
57
|
- name: Setup Node.js
|
|
58
|
-
uses: actions/setup-node@
|
|
58
|
+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
59
59
|
with:
|
|
60
60
|
node-version-file: '.nvmrc'
|
|
61
61
|
cache: 'npm'
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"zod": "4.4.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@biomejs/biome": "2.5.
|
|
23
|
-
"@lousy-agents/mcp": "5.
|
|
24
|
-
"@modelcontextprotocol/server-sequential-thinking": "
|
|
25
|
-
"@types/node": "24.13.
|
|
26
|
-
"@upstash/context7-mcp": "3.2.
|
|
22
|
+
"@biomejs/biome": "2.5.3",
|
|
23
|
+
"@lousy-agents/mcp": "5.17.2",
|
|
24
|
+
"@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
|
|
25
|
+
"@types/node": "24.13.3",
|
|
26
|
+
"@upstash/context7-mcp": "3.2.3",
|
|
27
27
|
"chance": "1.1.13",
|
|
28
|
-
"tsx": "4.
|
|
29
|
-
"typescript": "
|
|
30
|
-
"vitest": "4.1.
|
|
28
|
+
"tsx": "4.23.1",
|
|
29
|
+
"typescript": "7.0.2",
|
|
30
|
+
"vitest": "4.1.10"
|
|
31
31
|
}
|
|
32
32
|
}
|