create-agentuity 0.0.7 ā 0.0.9
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 +5 -7
- package/setup.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-agentuity",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"module": "index.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,9 +30,10 @@
|
|
|
30
30
|
"author": "Agentuity",
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@agentuity/
|
|
34
|
-
"@agentuity/
|
|
35
|
-
"@agentuity/
|
|
33
|
+
"@agentuity/cli": "0.0.9",
|
|
34
|
+
"@agentuity/core": "0.0.9",
|
|
35
|
+
"@agentuity/react": "0.0.9",
|
|
36
|
+
"@agentuity/runtime": "0.0.9",
|
|
36
37
|
"@hono/zod-validator": "^0.7.4",
|
|
37
38
|
"enquirer": "^2.4.1",
|
|
38
39
|
"hono": "^4.7.10",
|
|
@@ -41,15 +42,12 @@
|
|
|
41
42
|
"zod": "^4.1.12"
|
|
42
43
|
},
|
|
43
44
|
"bun-create": {
|
|
44
|
-
"preinstall": "echo 'Preparing local dependencies...'",
|
|
45
45
|
"postinstall": [
|
|
46
|
-
"agentuity create --from-bun-create --no-log-prefix",
|
|
47
46
|
"bun run build"
|
|
48
47
|
],
|
|
49
48
|
"start": "bun run dev"
|
|
50
49
|
},
|
|
51
50
|
"devDependencies": {
|
|
52
|
-
"@agentuity/cli": "0.0.6",
|
|
53
51
|
"@types/bun": "latest",
|
|
54
52
|
"@types/react": "^19.0.0"
|
|
55
53
|
},
|
package/setup.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { basename } from 'path';
|
|
|
5
5
|
const projectDir = process.cwd();
|
|
6
6
|
const projectName = basename(projectDir);
|
|
7
7
|
|
|
8
|
-
console.log(`š§ Setting up
|
|
8
|
+
console.log(`š§ Setting up your project...\n`);
|
|
9
9
|
|
|
10
10
|
// Update package.json
|
|
11
11
|
const packageJsonPath = 'package.json';
|
|
@@ -60,6 +60,6 @@ for (const file of filesToRemove) {
|
|
|
60
60
|
|
|
61
61
|
console.log('\n⨠Setup complete!\n');
|
|
62
62
|
console.log(` Next steps:`);
|
|
63
|
-
console.log(` 1.
|
|
63
|
+
console.log(` 1. cd ./${projectName}`);
|
|
64
64
|
console.log(` 2. bun run dev`);
|
|
65
|
-
console.log(`\n Your
|
|
65
|
+
console.log(`\n Your agents will be running at http://localhost:3000\n`);
|