@kairon/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@kairon/cli",
3
+ "version": "0.1.0",
4
+ "description": "Drive Kairon from your terminal. An MCP client, not a second API.",
5
+ "license": "UNLICENSED",
6
+ "homepage": "https://github.com/heykairon/kairon/tree/main/apps/cli#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/heykairon/kairon.git",
10
+ "directory": "apps/cli"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/heykairon/kairon/issues"
14
+ },
15
+ "keywords": [
16
+ "kairon",
17
+ "linkedin",
18
+ "outreach",
19
+ "mcp",
20
+ "cli"
21
+ ],
22
+ "type": "module",
23
+ "bin": {
24
+ "kairon": "./dist/index.js"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "engines": {
30
+ "node": ">=22.23.1"
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "scripts": {
36
+ "build": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/index.js",
37
+ "kairon": "tsx src/index.ts",
38
+ "typecheck": "tsc --noEmit",
39
+ "test": "vitest run --passWithNoTests",
40
+ "test:coverage": "vitest run --coverage",
41
+ "test:watch": "vitest"
42
+ },
43
+ "dependencies": {
44
+ "@modelcontextprotocol/sdk": "^1.29.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^25.9.5",
48
+ "@vitest/coverage-v8": "^4.1.10",
49
+ "tsx": "^4.23.1",
50
+ "typescript": "^7.0.2",
51
+ "vitest": "^4.1.10"
52
+ }
53
+ }