@qtv/anchorkit 1.0.0-beta.3
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 +123 -0
- package/bin/anchorkit +8 -0
- package/dist/cli.mjs +92641 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@qtv/anchorkit",
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
|
+
"description": "AnchorKit — AI-native coding CLI with persistent knowledge vault",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"anchorkit": "./bin/anchorkit"
|
|
8
|
+
},
|
|
9
|
+
"files": ["bin/", "dist/cli.mjs", "README.md", "LICENSE"],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/QTVentures/anchorkit-ai.git",
|
|
16
|
+
"directory": "cli"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/QTVentures/anchorkit-ai#readme",
|
|
19
|
+
"bugs": "https://github.com/QTVentures/anchorkit-ai/issues",
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "bun run scripts/build.ts",
|
|
22
|
+
"prepublishOnly": "bun run build && bun run smoke",
|
|
23
|
+
"dev": "bun run build && node dist/cli.mjs",
|
|
24
|
+
"start": "node dist/cli.mjs",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
28
|
+
"format": "biome format --write .",
|
|
29
|
+
"lint": "biome check .",
|
|
30
|
+
"duplication": "jscpd src --min-lines 5 --threshold 4 --reporters consoleFull,json --output .anchorkit/jscpd-report"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@anthropic-ai/sdk": "^0.81.0",
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
35
|
+
"@mongodb-js/zstd": "^1.2.2",
|
|
36
|
+
"@xenova/transformers": "^2.17.2",
|
|
37
|
+
"better-sqlite3": "^11",
|
|
38
|
+
"chalk": "^5.6.2",
|
|
39
|
+
"chokidar": "^3.6.0",
|
|
40
|
+
"commander": "^12.1.0",
|
|
41
|
+
"fuse.js": "^7.1.0",
|
|
42
|
+
"gray-matter": "^4.0.3",
|
|
43
|
+
"ink": "^5.2.1",
|
|
44
|
+
"ink-spinner": "^5.0.0",
|
|
45
|
+
"marked": "^18.0.2",
|
|
46
|
+
"marked-terminal": "^7.3.0",
|
|
47
|
+
"react": "^18.3.1",
|
|
48
|
+
"ts-morph": "^25.0.1",
|
|
49
|
+
"undici": "^7.24.6",
|
|
50
|
+
"uuid": "^11.0.4",
|
|
51
|
+
"yaml": "^2.8.3",
|
|
52
|
+
"zod": "^3.25.76"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@biomejs/biome": "^1.9.4",
|
|
56
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
57
|
+
"@types/bun": "^1.3.11",
|
|
58
|
+
"@types/node": "^25.5.0",
|
|
59
|
+
"@types/react": "^18.3.12",
|
|
60
|
+
"@types/uuid": "^10.0.0",
|
|
61
|
+
"ink-testing-library": "^4.0.0",
|
|
62
|
+
"jscpd": "^4.0.5",
|
|
63
|
+
"typescript": "^5.9.3",
|
|
64
|
+
"vitest": "^4.1.5"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=20.0.0"
|
|
68
|
+
},
|
|
69
|
+
"license": "MIT",
|
|
70
|
+
"keywords": [
|
|
71
|
+
"cli",
|
|
72
|
+
"ai",
|
|
73
|
+
"claude",
|
|
74
|
+
"claude-code",
|
|
75
|
+
"coding-agent",
|
|
76
|
+
"vault",
|
|
77
|
+
"knowledge-management",
|
|
78
|
+
"zettelkasten"
|
|
79
|
+
]
|
|
80
|
+
}
|