-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.68 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "lat.md",
"version": "0.12.2",
"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 && pnpm build:view",
"build:view": "vite build --config view/vite.config.ts && vite build --config view/highlight.vite.config.ts",
"buildall": "pnpm build:packages && pnpm build",
"setup:rust": "pnpm --filter @lat.md/embed setup:rust",
"build:wasm": "pnpm --filter @lat.md/embed build:wasm",
"build:weights": "pnpm --filter @lat.md/embed-minilm-fp16 build:weights",
"build:packages": "pnpm --filter @lat.md/embed build && pnpm --filter @lat.md/embed-minilm-fp16 build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc --noEmit -p view/tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"view/**/*.{ts,tsx,css,html}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"view/**/*.{ts,tsx,css,html}\"",
"cook-test-rag": "tsx scripts/cook-test-rag.ts"
},
"devDependencies": {
"@types/geojson": "^7946.0.16",
"@types/hast": "^3.0.5",
"@types/mdast": "^4.0.4",
"@types/node": "^25.3.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.185.4",
"@types/topojson-client": "^3.1.5",
"@vitejs/plugin-react": "^5.0.0",
"graphology": "^0.26.0",
"highlight.js": "^11.12.0",
"jsdom": "^30.0.1",
"lowlight": "^3.3.0",
"mdast-util-from-markdown": "^2.0.3",
"micromark-util-types": "^2.0.2",
"prettier": "^3.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sigma": "^3.0.3",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vite": "^7.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@asciidoctor/core": "4.0.6",
"@folder/xdg": "^4.0.1",
"@lat.md/embed": "workspace:*",
"@lat.md/embed-minilm-fp16": "workspace:*",
"@libsql/client": "^0.17.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@repomix/tree-sitter-wasms": "^0.1.16",
"commander": "^14.0.3",
"github-slugger": "^2.0.0",
"ignore-walk": "^8.0.0",
"katex": "^0.18.4",
"maplibre-gl": "^5.24.0",
"mdast-util-gfm-autolink-literal": "^2.0.1",
"mdast-util-gfm-footnote": "^2.1.0",
"mdast-util-gfm-strikethrough": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-gfm-task-list-item": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"mermaid": "^11.17.2",
"micromark-extension-gfm-autolink-literal": "^2.1.0",
"micromark-extension-gfm-footnote": "^2.1.0",
"micromark-extension-gfm-strikethrough": "^2.1.0",
"micromark-extension-gfm-table": "^2.1.1",
"micromark-extension-gfm-task-list-item": "^2.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-emoji": "^5.0.2",
"remark-frontmatter": "^5.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"rst-compiler": "0.5.9",
"three": "^0.185.1",
"topojson-client": "^3.1.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"web-tree-sitter": "^0.26.6",
"yaml": "^2.8.2",
"zod": "^4.3.6"
}
}