-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "carly-ai",
"version": "0.3.1",
"description": "Agent-native CLI and MCP server for Carly — the AI scheduling assistant. Read bookings, booking pages, event types, and slots from any MCP-compatible client or shell.",
"type": "module",
"bin": {
"carly": "dist/index.js",
"carly-mcp": "dist/mcp.js"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./mcp": "./dist/mcp.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/usecarly/carly-cli",
"repository": {
"type": "git",
"url": "https://github.com/usecarly/carly-cli.git"
},
"bugs": {
"url": "https://github.com/usecarly/carly-cli/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"dev:mcp": "tsx src/mcp.ts",
"gen:n8n": "tsx scripts/gen-n8n-node.ts",
"gen:zapier": "tsx scripts/gen-zapier-app.ts",
"gen:openapi": "tsx scripts/gen-openapi.ts",
"gen:make": "tsx scripts/gen-make-app.ts",
"gen:pipedream": "tsx scripts/gen-pipedream.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^14.0.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"carly",
"carly-ai",
"cli",
"mcp",
"scheduling",
"calendar",
"bookings",
"agent",
"ai"
],
"license": "MIT"
}