konteks-cli 0.0.2
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/LICENSE +21 -0
- package/README.md +53 -0
- package/dist/main.js +7559 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://www.schemastore.org/package",
|
|
3
|
+
"bin": "dist/main.js",
|
|
4
|
+
"bugs": {
|
|
5
|
+
"url": "https://github.com/dominosaurs/konteks/issues"
|
|
6
|
+
},
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@huggingface/transformers": "^4.2.0",
|
|
9
|
+
"@inquirer/prompts": "^8.4.3",
|
|
10
|
+
"@libsql/client": "^0.17.3",
|
|
11
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
12
|
+
"@sqlite.org/sqlite-wasm": "^3.53.0-build1",
|
|
13
|
+
"@toon-format/toon": "^2.2.0",
|
|
14
|
+
"commander": "^14.0.3",
|
|
15
|
+
"drizzle-orm": "^0.45.2",
|
|
16
|
+
"tree-sitter-html": "^0.23.2",
|
|
17
|
+
"tree-sitter-javascript": "^0.25.0",
|
|
18
|
+
"tree-sitter-jsdoc": "^0.25.0",
|
|
19
|
+
"tree-sitter-json": "^0.24.8",
|
|
20
|
+
"tree-sitter-php": "^0.24.2",
|
|
21
|
+
"tree-sitter-typescript": "^0.23.2",
|
|
22
|
+
"web-tree-sitter": "^0.26.8",
|
|
23
|
+
"zod": "^4.4.3"
|
|
24
|
+
},
|
|
25
|
+
"description": "A local context graph for AI coding agents.",
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@biomejs/biome": "2.4.13",
|
|
28
|
+
"@types/bun": "^1.3.13",
|
|
29
|
+
"knip": "^6.12.2",
|
|
30
|
+
"tsup": "^8.5.1",
|
|
31
|
+
"typescript": "^6.0.3"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"bun": ">=1.3.0",
|
|
35
|
+
"node": ">=22"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"homepage": "https://github.com/dominosaurs/konteks#readme",
|
|
43
|
+
"keywords": [
|
|
44
|
+
"ai-memory",
|
|
45
|
+
"agent-memory",
|
|
46
|
+
"coding-agent",
|
|
47
|
+
"context",
|
|
48
|
+
"knowledge-graph",
|
|
49
|
+
"local-first",
|
|
50
|
+
"mcp",
|
|
51
|
+
"model-context-protocol"
|
|
52
|
+
],
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"name": "konteks-cli",
|
|
55
|
+
"packageManager": "bun@1.3.12",
|
|
56
|
+
"publishConfig": {
|
|
57
|
+
"access": "public",
|
|
58
|
+
"provenance": true
|
|
59
|
+
},
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/dominosaurs/konteks.git"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsup",
|
|
66
|
+
"check": "bun --silent run build && bun --silent run lint && bun --silent run test",
|
|
67
|
+
"dev": "bun src/main.ts",
|
|
68
|
+
"format": "biome check --write --reporter=github",
|
|
69
|
+
"lint": "bun --silent run format && knip -n --reporter compact && tsc --noEmit --pretty false",
|
|
70
|
+
"prepack": "bun run build",
|
|
71
|
+
"preview": "bun dist/main.js",
|
|
72
|
+
"test": "bun test --reporter=dots > /dev/null 2>&1 || bun test --only-failures"
|
|
73
|
+
},
|
|
74
|
+
"type": "module",
|
|
75
|
+
"version": "0.0.2"
|
|
76
|
+
}
|