-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "lat.md",
"version": "0.11.0",
"description": "A knowledge graph for your codebase, written in markdown",
"type": "module",
"packageManager": "pnpm@10.30.2",
"license": "MIT",
"author": "Yury Selivanov",
"repository": {
"type": "git",
"url": "https://github.com/1st1/lat.md.git"
},
"homepage": "https://github.com/1st1/lat.md",
"keywords": [
"markdown",
"knowledge-graph",
"documentation",
"agents",
"cli",
"wiki-links",
"codebase"
],
"bin": {
"lat": "./dist/src/cli/index.js"
},
"files": [
"dist/src",
"templates"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"cook-test-rag": "tsx scripts/cook-test-rag.ts"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^25.3.0",
"mdast-util-from-markdown": "^2.0.3",
"micromark-util-types": "^2.0.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@folder/xdg": "^4.0.1",
"@libsql/client": "^0.17.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@repomix/tree-sitter-wasms": "^0.1.16",
"commander": "^14.0.3",
"ignore-walk": "^8.0.0",
"mdast-util-to-markdown": "^2.1.0",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"web-tree-sitter": "^0.26.6",
"zod": "^4.3.6"
}
}