-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
68
69
70
{
"name": "@kyoji2/intercom-cli",
"version": "0.1.6",
"description": "AI-native CLI for Intercom - manage customer conversations, contacts, messages, and support",
"author": "kyoji2",
"repository": {
"type": "git",
"url": "git+https://github.com/kyoji2/intercom-cli.git"
},
"bugs": {
"url": "https://github.com/kyoji2/intercom-cli/issues"
},
"homepage": "https://github.com/kyoji2/intercom-cli#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"module": "src/index.ts",
"type": "module",
"exports": {
".": "./src/client.ts",
"./client": "./src/client.ts",
"./utils": "./src/utils/index.ts"
},
"bin": {
"intercom": "dist/index.js"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"lint": "biome check ./src ./tests",
"lint:fix": "biome check --write ./src ./tests",
"format": "biome format --write ./src ./tests",
"build": "bun build src/index.ts --outdir dist --target bun && chmod +x dist/index.js",
"typecheck": "tsc --noEmit",
"release": "bun run scripts/release.ts",
"release:patch": "bun run scripts/release.ts patch",
"release:minor": "bun run scripts/release.ts minor",
"release:major": "bun run scripts/release.ts major"
},
"dependencies": {
"@toon-format/toon": "^2.1.0",
"commander": "^14.0.2",
"intercom-client": "^7.0.1",
"ora": "^9.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"keywords": [
"intercom",
"customer-support",
"conversations",
"contacts",
"cli",
"ai-native"
],
"license": "MIT"
}