@lousy-agents/cli 2.3.0 → 2.3.2

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": "@lousy-agents/cli",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "CLI scaffolding tool that sets up projects with structure, instructions, and feedback loops for AI coding assistants",
5
5
  "type": "module",
6
6
  "repository": {
@@ -42,6 +42,7 @@
42
42
  "build": "rspack build --config rspack.config.ts && chmod +x dist/index.js dist/mcp-server.js",
43
43
  "start": "node dist/index.js",
44
44
  "test": "vitest run",
45
+ "test:integration": "vitest run --config vitest.integration.config.ts",
45
46
  "lint": "biome check .",
46
47
  "lint:fix": "biome check --write .",
47
48
  "lint:workflows": "actionlint",
@@ -64,6 +65,7 @@
64
65
  "@types/chance": "1.1.7",
65
66
  "@types/node": "25.2.1",
66
67
  "chance": "1.1.13",
68
+ "testcontainers": "11.11.0",
67
69
  "tsx": "4.21.0",
68
70
  "typescript": "5.9.3",
69
71
  "vitest": "4.0.18",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "root": false,
3
- "$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
3
+ "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
4
4
  "vcs": {
5
5
  "enabled": true,
6
6
  "clientKind": "git",
@@ -1,31 +0,0 @@
1
- {
2
- "root": false,
3
- "$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
4
- "vcs": {
5
- "enabled": true,
6
- "clientKind": "git",
7
- "useIgnoreFile": true
8
- },
9
- "files": {
10
- "ignoreUnknown": false
11
- },
12
- "formatter": {
13
- "enabled": true,
14
- "indentStyle": "space",
15
- "indentWidth": 4
16
- },
17
- "linter": {
18
- "enabled": true,
19
- "rules": {
20
- "recommended": true,
21
- "style": {
22
- "useConsistentCurlyBraces": "error"
23
- }
24
- }
25
- },
26
- "javascript": {
27
- "formatter": {
28
- "quoteStyle": "double"
29
- }
30
- }
31
- }