@kanera/cli 1.5.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/README.md +132 -0
- package/dist/LICENSE +94 -0
- package/dist/THIRD_PARTY_NOTICES.md +708 -0
- package/dist/kanera.mjs +65862 -0
- package/dist/kanera.mjs.map +7 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kanera/cli",
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"description": "Kanera command-line interface for terminals and AI agents",
|
|
5
|
+
"license": "Elastic-2.0",
|
|
6
|
+
"private": false,
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"kanera": "dist/kanera.mjs"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=22"
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/happendev/Kanera.git",
|
|
24
|
+
"directory": "apps/cli"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"kanera",
|
|
28
|
+
"project-management",
|
|
29
|
+
"cli",
|
|
30
|
+
"ai-agents",
|
|
31
|
+
"mcp"
|
|
32
|
+
],
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@kanera/mcp": "2.2.0",
|
|
35
|
+
"@kanera/shared": "1.5.0",
|
|
36
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
37
|
+
"@types/node": "^24.13.3",
|
|
38
|
+
"esbuild": "0.28.1",
|
|
39
|
+
"tsx": "^4.23.12",
|
|
40
|
+
"typescript": "~5.9.3",
|
|
41
|
+
"zod": "^4.4.3"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"dev": "tsx src/main.ts",
|
|
45
|
+
"build": "tsc -p tsconfig.json --noEmit && node scripts/build.mjs",
|
|
46
|
+
"lint": "tsc -p tsconfig.json --noEmit && eslint src",
|
|
47
|
+
"test": "pnpm build && node --import tsx --test 'src/**/*.test.ts' 'test/**/*.test.mjs'"
|
|
48
|
+
}
|
|
49
|
+
}
|