-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@agentico/mcp-create-tool",
"version": "0.2.0",
"description": "CLI tool to create new Agentico MCP tools",
"license": "MIT",
"author": {
"name": "Agentico",
"url": "https://agentico.dev"
},
"contributors": [
{
"name": "Adrian Escutia",
"url": "https://escutia.me/adrian"
},
{
"name": "La Rebelion Labs",
"url": "https://rebelion.la"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/agentico-dev/mcp-create-tool.git"
},
"homepage": "https://agentico.dev",
"bugs": "https://github.com/agentico-dev/mcp-create-tool/issues",
"type": "module",
"bin": {
"mcp-create-tool": "build/index.js"
},
"files": [
"build",
"template"
],
"scripts": {
"build": "tsc && shx chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@inquirer/prompts": "^7.2.2",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"ejs": "^3.1.10",
"is-wsl": "^3.1.0",
"lodash": "^4.17.21",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/lodash": "^4.17.15",
"@types/node": "^20.11.24",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}