-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "llm-compass",
"version": "0.1.0",
"description": "LLM training algorithms knowledge base: SFT / LoRA / DPO / RLHF / Agent",
"private": true,
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"feishu:bootstrap": "node scripts/feishu-sync/bootstrap.mjs",
"feishu:sync": "node scripts/feishu-sync/cli.mjs",
"feishu:sync:dry-run": "node scripts/feishu-sync/cli.mjs --dry-run",
"test:feishu-sync": "node --test test/feishu-sync.test.mjs"
},
"license": "MIT",
"devDependencies": {
"katex": "^0.16.47",
"markdown-it-mathjax3": "^4.3.2",
"mermaid": "^11.15.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17"
}
}