create-agentuity 0.0.11 → 0.0.12
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/README.md +0 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -39,7 +39,6 @@ my-app/
|
|
|
39
39
|
│ └── web/ # React web application
|
|
40
40
|
│ └── app.tsx # Main React component
|
|
41
41
|
├── app.ts # Application entry point
|
|
42
|
-
├── setup.ts # Initial setup script
|
|
43
42
|
├── tsconfig.json # TypeScript configuration
|
|
44
43
|
├── package.json # Dependencies and scripts
|
|
45
44
|
└── README.md # Project documentation
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-agentuity",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Create a new Agentuity project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-agentuity": "./bin.js"
|
|
8
8
|
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "echo 'No build required'"
|
|
11
|
+
},
|
|
9
12
|
"files": [
|
|
10
13
|
"bin.js"
|
|
11
14
|
],
|