-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 970 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "create-ai-agents",
"version": "0.3.2",
"description": "Create AI agents. A command-line interface (CLI) tool that helps you quickly set up new AI agent projects using the ⌘ Langbase SDK. It streamlines the process of creating a new project, installing dependencies, and setting up a basic example.",
"license": "MIT",
"type": "module",
"bin": {
"create-ai-agents": "./index.js"
},
"repository": "ahmadawais/create-ai-agents",
"author": {
"name": "Ahmad Awais",
"email": "[email protected]",
"url": "https://twitter.com/MrAhmadAwais"
},
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"create-ai-agents",
"Ahmad Awais",
"ahmadawais"
],
"devDependencies": {
"prettier": "^2.8.8"
},
"scripts": {
"test": "node test.js",
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.3.1",
"inquirer": "^10.1.8",
"ora": "^8.1.0"
}
}