@lousy-agents/cli 1.0.0 → 1.0.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/dist/index.js +0 -0
- package/dist/mcp-server.js +0 -0
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
File without changes
|
package/dist/mcp-server.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lousy-agents/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.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": {
|
|
@@ -29,12 +29,13 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"bin": {
|
|
32
|
+
"cli": "./dist/index.js",
|
|
32
33
|
"lousy-agents": "./dist/index.js",
|
|
33
34
|
"lousy-agents-mcp": "./dist/mcp-server.js"
|
|
34
35
|
},
|
|
35
36
|
"scripts": {
|
|
36
37
|
"dev": "tsx src/index.ts",
|
|
37
|
-
"build": "tsc",
|
|
38
|
+
"build": "tsc && chmod +x dist/index.js dist/mcp-server.js",
|
|
38
39
|
"start": "node dist/index.js",
|
|
39
40
|
"test": "vitest run",
|
|
40
41
|
"lint": "biome check .",
|