-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 961 Bytes
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
{
"name": "intercom-cli",
"version": "0.1.0",
"description": "Agent-optimized CLI for the Intercom API — manage conversations, contacts, and tickets from your terminal or AI agent",
"bin": {
"intercom": "./dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"intercom",
"cli",
"ai-agent",
"mcp",
"customer-support",
"helpdesk",
"automation"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.7.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dayjs": "^1.11.13",
"inquirer": "^8.2.6",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/inquirer": "^8.2.10",
"@types/node": "^20.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}